Welcome to mirror list, hosted at ThFree Co, Russian Federation.

InterfaceMapping.cs « System.Reflection « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8da05148398247a460b7c76261ac47896a2244c4 (plain)
1
2
3
4
5
6
7
8
9
10

namespace System.Reflection {

	public struct InterfaceMapping {
		public MethodInfo[] InterfaceMethods;
		public Type InterfaceType;
		public MethodInfo[] TargetMethods;
		public Type TargetType;
	}
}