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 ?
| |||
|
feedback
|
|
Use Type.GetGenericArguments. For example:
Output:
| |||
|
feedback
|
|
Use Type.GetGenericArguments(). For example:
Output: Int32 | ||||
|
feedback
|