2 instantiations of MethodInstantiationHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
631handle = new MethodInstantiationHandle((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7420return new MethodInstantiationHandle(this);
10 references to MethodInstantiationHandle
System.Private.CoreLib (10)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
627public static uint Read(this NativeReader reader, uint offset, out MethodInstantiationHandle handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (9)
3355private readonly MethodInstantiationHandle _handle; 3357internal MethodInstantiation(MetadataReader reader, MethodInstantiationHandle handle) 3367public MethodInstantiationHandle Handle => _handle; 3399if (obj is MethodInstantiationHandle) 3400return _value == ((MethodInstantiationHandle)obj)._value; 3407public bool Equals(MethodInstantiationHandle handle) => _value == handle._value; 3413public static implicit operator Handle(MethodInstantiationHandle handle) 7418public MethodInstantiationHandle ToMethodInstantiationHandle(MetadataReader reader) 7808public MethodInstantiation GetMethodInstantiation(MethodInstantiationHandle handle)