Are variables in the main methods static.
- by vaibhav
Its a well known fact that a static method can work only on static members.
public static void Main()
{
Test t1 = new Test();
}
Here the Main method is static, but I haven't declared t1 as static. Is it implicitly static?