2 instantiations of ConstantDoubleValueHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
352handle = new ConstantDoubleValueHandle((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7265return new ConstantDoubleValueHandle(this);
10 references to ConstantDoubleValueHandle
System.Private.CoreLib (10)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
348public static uint Read(this NativeReader reader, uint offset, out ConstantDoubleValueHandle handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (9)
764private readonly ConstantDoubleValueHandle _handle; 766internal ConstantDoubleValue(MetadataReader reader, ConstantDoubleValueHandle handle) 775public ConstantDoubleValueHandle Handle => _handle; 802if (obj is ConstantDoubleValueHandle) 803return _value == ((ConstantDoubleValueHandle)obj)._value; 810public bool Equals(ConstantDoubleValueHandle handle) => _value == handle._value; 816public static implicit operator Handle(ConstantDoubleValueHandle handle) 7263public ConstantDoubleValueHandle ToConstantDoubleValueHandle(MetadataReader reader) 7653public ConstantDoubleValue GetConstantDoubleValue(ConstantDoubleValueHandle handle)