Reflection-generated and generic types
问题 I'm having yet another nasty moment with Reflection.Emit and type management. Say, I have a type named MyType which is defined in the dynamically generated assembly. Calling MyType.GetMethods() results in a NotSupportedException , which has reduced me to writing my own set of wrappers and lookup tables. However, the same is happening when I'm calling GetMethods() or any other introspecting methods on standard generic types which use my own types as generic arguments: Tuple<int, string> =>