3
Reply

declare Genric type via reflection

harshil oh

harshil oh

Sep 20 2010 7:18 AM
5.7k
hi,
i like to know about how to instantiate generic object with reflection
pls find my example,

I want to create an Object of "hello" with generic type "ClassABC"

//want to Create hello object,with generic type will declare at run time only
 
public void DoHello(String ClassName)
{
       Type TypeClassABC= Type.GetType(ClassName);

        hello _hello= new hello<TypeClassABC>();

}
But get a build error:

the type or namespace "TypeClassABC" could not be found,



Answers (3)