Why you can create class self intance in class's main method
Posted
by Haite
on Stack Overflow
See other posts from Stack Overflow
or by Haite
Published on 2010-03-30T08:27:14Z
Indexed on
2010/03/30
8:33 UTC
Read the original article
Hit count: 245
c#
Why you can do this in C#?
class Test
{
static void Main()
{
Test test = new Test();
}
}
© Stack Overflow or respective owner