Given a method MethodName with the signature void MethodName(int num)
, it would be done something like:
MethodInfo method = obj.GetType().GetMethod("MethodName",
BindingFlags.Public|BindingFlags.Instance)
method.Invoke(obj, 4) // void method
Hope this helps.