2003-12-08 Patrik Torstensson <p@rxc.se>
[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 }