2 instantiations of ConstantUInt64ValueHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
550handle = new ConstantUInt64ValueHandle((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7375return new ConstantUInt64ValueHandle(this);
10 references to ConstantUInt64ValueHandle
System.Private.CoreLib (10)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
546public static uint Read(this NativeReader reader, uint offset, out ConstantUInt64ValueHandle handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (9)
2531private readonly ConstantUInt64ValueHandle _handle; 2533internal ConstantUInt64Value(MetadataReader reader, ConstantUInt64ValueHandle handle) 2542public ConstantUInt64ValueHandle Handle => _handle; 2569if (obj is ConstantUInt64ValueHandle) 2570return _value == ((ConstantUInt64ValueHandle)obj)._value; 2577public bool Equals(ConstantUInt64ValueHandle handle) => _value == handle._value; 2583public static implicit operator Handle(ConstantUInt64ValueHandle handle) 7373public ConstantUInt64ValueHandle ToConstantUInt64ValueHandle(MetadataReader reader) 7763public ConstantUInt64Value GetConstantUInt64Value(ConstantUInt64ValueHandle handle)