how to call static method inside non static method in c# ?
static
non static
c#
Interviewer gave me scenario :
class class1 { pub
class1.method1();
Same as you'd call any other static method
Apparently (as Selman22 pointed out) - the classname isn't necessary.
So
method1();
would work just as well