2
Reply

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

Nishant Mittal

Nishant Mittal

8y
1.7k
1
Reply

    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.

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