2
Reply

How can I call non static method from Static Method??

Nishant Mittal

Nishant Mittal

Jul 12, 2016
1.7k
1

    non static method must be a public method. non static method must be a public class. create a instance for that class and then we can access the method.

    Ayappan Alagesan
    February 10, 2017
    0

    private static void OnReadComplete(IAsyncResult result) {ClassName objClassName = new ClassName();objClassName.methodName(); }

    Nishant Mittal
    July 12, 2016
    0