InterfaceMapping.cs 203 B

12345678910
  1. namespace System.Reflection {
  2. public struct InterfaceMapping {
  3. public MethodInfo[] InterfaceMethods;
  4. public Type InterfaceType;
  5. public MethodInfo[] TargetMethods;
  6. public Type TargetType;
  7. }
  8. }