2003-10-17 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / corlib / System.Reflection / InterfaceMapping.cs
1
2 namespace System.Reflection {
3
4         public struct InterfaceMapping {
5                 public MethodInfo[] InterfaceMethods;
6                 public Type InterfaceType;
7                 public MethodInfo[] TargetMethods;
8                 public Type TargetType;
9         }
10 }