I wanna have a method that gives a string as other method name and param array of object, then call that other method and gives param to its arguments how can I do that
example :
public void callMethod(string methodName,params object[] args)
{
//call other method by name
}
and other methods :
public void methodOne(int i, float f)
{
}
public void methodTwo(string r)
{
}