Hello guys I'm new to C# programming. I'd like to know what's the equivalent of this Java static to C#?
class NMM
{
public static void main(String []args)
{
System.out.println("java");
}
static
{
System.out.println("great");
NMM.main(null);
System.out.println("programmer");
System.exit(0);
}
}
Any help would be appreciated.