Answers for "main cant call non static method"

0

can you run non static method on main

//You simply need to create an instance of the Object you created
public Class Obj{
	public void nonStaticMethod(){
	//execute code
	}
	public static void main(string args[]){
		Obj obj = new Obj();
	    obj.nonStaticMethod
	}
}
Posted by: Guest on June-01-2020
0

how to call a non static method

class Program {
    public static void Main(string[] args) {
        Program p = new Program();
        p.TestMethod();
        staticFunction();
    }
    public void TestMethod() {
        Console.WriteLine("Inside non-static function");
    }
    public static void staticFunction() {
        Console.WriteLine("Inside static function");
    }
}
Posted by: Guest on December-29-2021

Code answers related to "main cant call non static method"

Browse Popular Code Answers by Language