2 instantiations of ConstantSingleValueHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
478handle = new ConstantSingleValueHandle((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7335return new ConstantSingleValueHandle(this);
10 references to ConstantSingleValueHandle
System.Private.CoreLib (10)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
474public static uint Read(this NativeReader reader, uint offset, out ConstantSingleValueHandle handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (9)
1888private readonly ConstantSingleValueHandle _handle; 1890internal ConstantSingleValue(MetadataReader reader, ConstantSingleValueHandle handle) 1899public ConstantSingleValueHandle Handle => _handle; 1926if (obj is ConstantSingleValueHandle) 1927return _value == ((ConstantSingleValueHandle)obj)._value; 1934public bool Equals(ConstantSingleValueHandle handle) => _value == handle._value; 1940public static implicit operator Handle(ConstantSingleValueHandle handle) 7333public ConstantSingleValueHandle ToConstantSingleValueHandle(MetadataReader reader) 7723public ConstantSingleValue GetConstantSingleValue(ConstantSingleValueHandle handle)