I have a class
class Class<T>
{
public Class(T arg)
{
print(arg.ToString());
}
}
Pls Correct me: How to create an instance from this generic class
Type t = typeof(Class<>).MakeGenericType(typeof(string));
Activator.CreateInstance(t,"test");