how to call static method inside non static method in c# ?
static
non static
c#
Interviewer gave me scenario :
class class1 { pub
You type the method name out, and then compile and run it:
class class1 { public static void method1(){} public void method2() { method1() } }