G
Guest
Hi!
I want to do something like that :
class Test<T>{
}
string myVar = "System.String";
Type myType = Type.GetType( myVar );
Test<myType> delta = new Test<myType>();
Is it possible to do something like that ?
Thanks for your help
I want to do something like that :
class Test<T>{
}
string myVar = "System.String";
Type myType = Type.GetType( myVar );
Test<myType> delta = new Test<myType>();
Is it possible to do something like that ?
Thanks for your help