2 instantiations of ConstantInt64ArrayHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
424handle = new ConstantInt64ArrayHandle((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7305return new ConstantInt64ArrayHandle(this);
10 references to ConstantInt64ArrayHandle
System.Private.CoreLib (10)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
420public static uint Read(this NativeReader reader, uint offset, out ConstantInt64ArrayHandle handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (9)
1412private readonly ConstantInt64ArrayHandle _handle; 1414internal ConstantInt64Array(MetadataReader reader, ConstantInt64ArrayHandle handle) 1423public ConstantInt64ArrayHandle Handle => _handle; 1450if (obj is ConstantInt64ArrayHandle) 1451return _value == ((ConstantInt64ArrayHandle)obj)._value; 1458public bool Equals(ConstantInt64ArrayHandle handle) => _value == handle._value; 1464public static implicit operator Handle(ConstantInt64ArrayHandle handle) 7303public ConstantInt64ArrayHandle ToConstantInt64ArrayHandle(MetadataReader reader) 7693public ConstantInt64Array GetConstantInt64Array(ConstantInt64ArrayHandle handle)