2 instantiations of ConstantUInt64ArrayHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
541handle = new ConstantUInt64ArrayHandle((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7370return new ConstantUInt64ArrayHandle(this);
10 references to ConstantUInt64ArrayHandle
System.Private.CoreLib (10)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
537public static uint Read(this NativeReader reader, uint offset, out ConstantUInt64ArrayHandle handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (9)
2451private readonly ConstantUInt64ArrayHandle _handle; 2453internal ConstantUInt64Array(MetadataReader reader, ConstantUInt64ArrayHandle handle) 2462public ConstantUInt64ArrayHandle Handle => _handle; 2489if (obj is ConstantUInt64ArrayHandle) 2490return _value == ((ConstantUInt64ArrayHandle)obj)._value; 2497public bool Equals(ConstantUInt64ArrayHandle handle) => _value == handle._value; 2503public static implicit operator Handle(ConstantUInt64ArrayHandle handle) 7368public ConstantUInt64ArrayHandle ToConstantUInt64ArrayHandle(MetadataReader reader) 7758public ConstantUInt64Array GetConstantUInt64Array(ConstantUInt64ArrayHandle handle)