Wed Sep 11 12:49:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
[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 }