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
831 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 ...