Calling methods using variables
hello,
I was wondering if there might be a way to call a mthod which name is stored in a variable.
I.E.
string s_method = "my_method";
Would it be possible to call "my_method" by using s_method without knowing what it contained?
Thanks for any help.