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 with, by looking at the type variable ? Is it possible ?
|
|
If I have the following code:
How can I find out which type parameter(s) "anInstance" was instantiated with, by looking at the type variable ? Is it possible ?
|
||
|
|
|
|
Use Type.GetGenericArguments. For example:
Output:
|
||
|
|
|
|
Use Type.GetGenericArguments(). For example:
} Output: Int32 |
||
|
|