RuntimeReflectionExtensions
namespace System.Reflection
{
internal static class RuntimeReflectionExtensions
{
public static InterfaceMapping GetRuntimeInterfaceMap(this Type type, Type interfaceType)
{
return type.GetInterfaceMap(interfaceType);
}
}
}