2 instantiations of ConstantUInt32ArrayHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
523handle = new ConstantUInt32ArrayHandle((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7360return new ConstantUInt32ArrayHandle(this);
10 references to ConstantUInt32ArrayHandle
System.Private.CoreLib (10)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
519public static uint Read(this NativeReader reader, uint offset, out ConstantUInt32ArrayHandle handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (9)
2291private readonly ConstantUInt32ArrayHandle _handle; 2293internal ConstantUInt32Array(MetadataReader reader, ConstantUInt32ArrayHandle handle) 2302public ConstantUInt32ArrayHandle Handle => _handle; 2329if (obj is ConstantUInt32ArrayHandle) 2330return _value == ((ConstantUInt32ArrayHandle)obj)._value; 2337public bool Equals(ConstantUInt32ArrayHandle handle) => _value == handle._value; 2343public static implicit operator Handle(ConstantUInt32ArrayHandle handle) 7358public ConstantUInt32ArrayHandle ToConstantUInt32ArrayHandle(MetadataReader reader) 7748public ConstantUInt32Array GetConstantUInt32Array(ConstantUInt32ArrayHandle handle)