I have a string containing the name of a generic class with specified type:
string s = "GenericRouteHandler<MemberHandler>";
How do I instantiate an instance from this string? I know how to instantiate a concrete class using Type.GetType() and then use Activator but I am not sure where to go with a generic class.