2 instantiations of ConstantSingleArrayHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
469handle = new ConstantSingleArrayHandle((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7330return new ConstantSingleArrayHandle(this);
10 references to ConstantSingleArrayHandle
System.Private.CoreLib (10)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
465public static uint Read(this NativeReader reader, uint offset, out ConstantSingleArrayHandle handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (9)
1808private readonly ConstantSingleArrayHandle _handle; 1810internal ConstantSingleArray(MetadataReader reader, ConstantSingleArrayHandle handle) 1819public ConstantSingleArrayHandle Handle => _handle; 1846if (obj is ConstantSingleArrayHandle) 1847return _value == ((ConstantSingleArrayHandle)obj)._value; 1854public bool Equals(ConstantSingleArrayHandle handle) => _value == handle._value; 1860public static implicit operator Handle(ConstantSingleArrayHandle handle) 7328public ConstantSingleArrayHandle ToConstantSingleArrayHandle(MetadataReader reader) 7718public ConstantSingleArray GetConstantSingleArray(ConstantSingleArrayHandle handle)