2 instantiations of ConstantInt32ValueHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
415handle = new ConstantInt32ValueHandle((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7300return new ConstantInt32ValueHandle(this);
10 references to ConstantInt32ValueHandle
System.Private.CoreLib (10)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
411public static uint Read(this NativeReader reader, uint offset, out ConstantInt32ValueHandle handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (9)
1332private readonly ConstantInt32ValueHandle _handle; 1334internal ConstantInt32Value(MetadataReader reader, ConstantInt32ValueHandle handle) 1343public ConstantInt32ValueHandle Handle => _handle; 1370if (obj is ConstantInt32ValueHandle) 1371return _value == ((ConstantInt32ValueHandle)obj)._value; 1378public bool Equals(ConstantInt32ValueHandle handle) => _value == handle._value; 1384public static implicit operator Handle(ConstantInt32ValueHandle handle) 7298public ConstantInt32ValueHandle ToConstantInt32ValueHandle(MetadataReader reader) 7688public ConstantInt32Value GetConstantInt32Value(ConstantInt32ValueHandle handle)