Hi I am trying to use C# reflection to call a method that is passed a parameter and in return passes back a result. How can I do that? I\'ve tried a couple of things but wit
Here's a quick example of calling an object method by name using reflection:
Type thisType = .GetType(); MethodInfo theMethod = thisType.GetMethod(); theMethod.Invoke(this, );