4 implementations of IRuntimeMemberInfoWithNoMetadataDefinition
System.Private.CoreLib (4)
System\Reflection\Runtime\MethodInfos\RuntimeSyntheticConstructorInfo.cs (1)
20internal sealed partial class RuntimeSyntheticConstructorInfo : RuntimeConstructorInfo, IRuntimeMemberInfoWithNoMetadataDefinition
System\Reflection\Runtime\MethodInfos\RuntimeSyntheticMethodInfo.cs (1)
20internal sealed partial class RuntimeSyntheticMethodInfo : RuntimeMethodInfo, IRuntimeMemberInfoWithNoMetadataDefinition
System\Reflection\Runtime\TypeInfos\RuntimeFunctionPointerTypeInfo.cs (1)
15internal sealed partial class RuntimeFunctionPointerTypeInfo : RuntimeTypeInfo, IRuntimeMemberInfoWithNoMetadataDefinition
System\Reflection\Runtime\TypeInfos\RuntimeHasElementTypeInfo.cs (1)
18internal abstract partial class RuntimeHasElementTypeInfo : RuntimeTypeInfo, IKeyedItem<RuntimeHasElementTypeInfo.UnificationKey>, IRuntimeMemberInfoWithNoMetadataDefinition
4 references to IRuntimeMemberInfoWithNoMetadataDefinition
System.Private.CoreLib (4)
System\Reflection\Runtime\MethodInfos\RuntimeSyntheticConstructorInfo.cs (1)
108return other is ConstructorInfo && other is IRuntimeMemberInfoWithNoMetadataDefinition;
System\Reflection\Runtime\MethodInfos\RuntimeSyntheticMethodInfo.cs (1)
62return other is MethodInfo && other is IRuntimeMemberInfoWithNoMetadataDefinition;
System\Reflection\Runtime\TypeInfos\RuntimeFunctionPointerTypeInfo.cs (1)
60return other is RuntimeType runtimeType && runtimeType.GetRuntimeTypeInfo() is IRuntimeMemberInfoWithNoMetadataDefinition;
System\Reflection\Runtime\TypeInfos\RuntimeHasElementTypeInfo.cs (1)
82return other is RuntimeType runtimeType && runtimeType.GetRuntimeTypeInfo() is IRuntimeMemberInfoWithNoMetadataDefinition;