2 instantiations of ConstantInt64ValueHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
433handle = new ConstantInt64ValueHandle((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7310return new ConstantInt64ValueHandle(this);
10 references to ConstantInt64ValueHandle
System.Private.CoreLib (10)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
429public static uint Read(this NativeReader reader, uint offset, out ConstantInt64ValueHandle handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (9)
1492private readonly ConstantInt64ValueHandle _handle; 1494internal ConstantInt64Value(MetadataReader reader, ConstantInt64ValueHandle handle) 1503public ConstantInt64ValueHandle Handle => _handle; 1530if (obj is ConstantInt64ValueHandle) 1531return _value == ((ConstantInt64ValueHandle)obj)._value; 1538public bool Equals(ConstantInt64ValueHandle handle) => _value == handle._value; 1544public static implicit operator Handle(ConstantInt64ValueHandle handle) 7308public ConstantInt64ValueHandle ToConstantInt64ValueHandle(MetadataReader reader) 7698public ConstantInt64Value GetConstantInt64Value(ConstantInt64ValueHandle handle)