2 instantiations of ConstantDoubleArrayHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
343handle = new ConstantDoubleArrayHandle((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7260return new ConstantDoubleArrayHandle(this);
10 references to ConstantDoubleArrayHandle
System.Private.CoreLib (10)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
339public static uint Read(this NativeReader reader, uint offset, out ConstantDoubleArrayHandle handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (9)
684private readonly ConstantDoubleArrayHandle _handle; 686internal ConstantDoubleArray(MetadataReader reader, ConstantDoubleArrayHandle handle) 695public ConstantDoubleArrayHandle Handle => _handle; 722if (obj is ConstantDoubleArrayHandle) 723return _value == ((ConstantDoubleArrayHandle)obj)._value; 730public bool Equals(ConstantDoubleArrayHandle handle) => _value == handle._value; 736public static implicit operator Handle(ConstantDoubleArrayHandle handle) 7258public ConstantDoubleArrayHandle ToConstantDoubleArrayHandle(MetadataReader reader) 7648public ConstantDoubleArray GetConstantDoubleArray(ConstantDoubleArrayHandle handle)