Tagged Questions

4
votes
2answers
3k views

Reflection - Getting the generic parameters from a System.Type instance

If I have the following code: MyType<int> anInstance = new MyType<int>(); Type type = anInstance.GetType(); How can I find out which type parameter(s) "anInstance" was instantiated ...
2
votes
3answers
829 views

How to create List<T> instance in C# file using Reflection

HI, I have a requirement to create instance for list object at runtime using reflection. For example I have 2 classes like below, class Class1 { List<Class2> class2List; public ...
1
vote
2answers
105 views

Passing DataTable Column Type to generic method <T>

I have a method declared as such public static T GetValidatedValue<T>(string param) { do something here and return object of type T...; } usually I call it like this var somnum = ...