Hi
I am trying to read the parameters of a method dynamically and then call that method with the passed parameter values (string type). I am able to write the code that reads the parameter of simple .net types like - string, int, float, double etc. I read them and convert to required type using ChangeType method. But I am not able to make the code work for other types like - XMLElement, Color, etc.
Here is my generic...