Example: InvokeGenericMethod
This example invokes the MyTest method.
public string Test(string t1, int t2) { object[] parameters = new object[] { t1, t2}; object result = LrReplayUtils.InvokeGenericMethod(this.target, "MyTest", 100663407, new System.Type[] { typeof(string)}, parameters); return ((string)(result)); }