本文整理汇总了C#中System.Type.GetInterfaceMap方法的典型用法代码示例。如果您正苦于以下问题:C# Type.GetInterfaceMap方法的具体用法?C# Type.GetInterfaceMap怎么用?C# Type.GetInterfaceMap使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Type
的用法示例。
在下文中一共展示了Type.GetInterfaceMap方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Main
//引入命名空间
using System;
using System.Globalization;
using System.Reflection;
public class Example
{
public static void Main()
{
Type[] interf = { typeof(IFormatProvider), typeof(IAppDomainSetup) };
Type[] impl = { typeof(CultureInfo), typeof(AppDomainSetup) };
for (int ctr = 0; ctr < interf.Length; ctr++)
ShowInterfaceMapping(interf[ctr], impl[ctr]);
}
private static void ShowInterfaceMapping(Type intType, Type implType)
{
InterfaceMapping map = implType.GetInterfaceMap(intType);
Console.WriteLine("Mapping of {0} to {1}: ", map.InterfaceType, map.TargetType);
for (int ctr = 0; ctr < map.InterfaceMethods.Length; ctr++) {
MethodInfo im = map.InterfaceMethods[ctr];
MethodInfo tm = map.TargetMethods[ctr];
Console.WriteLine(" {0} --> {1}", im.Name,tm.Name);
}
Console.WriteLine();
}
}
输出:
Mapping of System.IFormatProvider to System.Globalization.CultureInfo: GetFormat --> GetFormat Mapping of System.IAppDomainSetup to System.AppDomainSetup: get_ApplicationBase --> get_ApplicationBase set_ApplicationBase --> set_ApplicationBase get_ApplicationName --> get_ApplicationName set_ApplicationName --> set_ApplicationName get_CachePath --> get_CachePath set_CachePath --> set_CachePath get_ConfigurationFile --> get_ConfigurationFile set_ConfigurationFile --> set_ConfigurationFile get_DynamicBase --> get_DynamicBase set_DynamicBase --> set_DynamicBase get_LicenseFile --> get_LicenseFile set_LicenseFile --> set_LicenseFile get_PrivateBinPath --> get_PrivateBinPath set_PrivateBinPath --> set_PrivateBinPath get_PrivateBinPathProbe --> get_PrivateBinPathProbe set_PrivateBinPathProbe --> set_PrivateBinPathProbe get_ShadowCopyDirectories --> get_ShadowCopyDirectories set_ShadowCopyDirectories --> set_ShadowCopyDirectories get_ShadowCopyFiles --> get_ShadowCopyFiles set_ShadowCopyFiles --> set_ShadowCopyFiles