I need to call a function with the prototype:
SomeFunc<T>()
and say I have a class of:
public class Person
{
}
I would call it as SomeFunc<Person>()
. However I only have Person expressed as a string so for instance:
var classString = "Person";
So how do I convert classString
so I can pass it for T?