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