How can I call non static method from Static Method??
Nishant Mittal
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(); }