I have the following code, should be easy to follow through
public class Foo { public void FooHasAMethod() { Console.WriteLine(\"it is me, fo
Type fooObjType = fooObj.GetType(); MethodInfo method = fooObjType.GetMethod("FooHasAMethod"); method.Invoke(fooObj, new object[0]);