2 instantiations of ConstantInt32ArrayHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
406handle = new ConstantInt32ArrayHandle((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7295return new ConstantInt32ArrayHandle(this);
10 references to ConstantInt32ArrayHandle
System.Private.CoreLib (10)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
402public static uint Read(this NativeReader reader, uint offset, out ConstantInt32ArrayHandle handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (9)
1252private readonly ConstantInt32ArrayHandle _handle; 1254internal ConstantInt32Array(MetadataReader reader, ConstantInt32ArrayHandle handle) 1263public ConstantInt32ArrayHandle Handle => _handle; 1290if (obj is ConstantInt32ArrayHandle) 1291return _value == ((ConstantInt32ArrayHandle)obj)._value; 1298public bool Equals(ConstantInt32ArrayHandle handle) => _value == handle._value; 1304public static implicit operator Handle(ConstantInt32ArrayHandle handle) 7293public ConstantInt32ArrayHandle ToConstantInt32ArrayHandle(MetadataReader reader) 7683public ConstantInt32Array GetConstantInt32Array(ConstantInt32ArrayHandle handle)