C# Winform, Call method dynamically

Viewed 25

//I have following methods

private void method1();
private void method2();
private void method3();

//where I want to call these methods dynamically...

    private void Method(Int16 A)
    {
         string m="method";
         m+=A;
         m(); //it should call above methods dynamically....
    }
0 Answers
Related