2 instantiations of ConstantInt16ValueHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
397handle = new ConstantInt16ValueHandle((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7290return new ConstantInt16ValueHandle(this);
10 references to ConstantInt16ValueHandle
System.Private.CoreLib (10)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
393public static uint Read(this NativeReader reader, uint offset, out ConstantInt16ValueHandle handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (9)
1172private readonly ConstantInt16ValueHandle _handle; 1174internal ConstantInt16Value(MetadataReader reader, ConstantInt16ValueHandle handle) 1183public ConstantInt16ValueHandle Handle => _handle; 1210if (obj is ConstantInt16ValueHandle) 1211return _value == ((ConstantInt16ValueHandle)obj)._value; 1218public bool Equals(ConstantInt16ValueHandle handle) => _value == handle._value; 1224public static implicit operator Handle(ConstantInt16ValueHandle handle) 7288public ConstantInt16ValueHandle ToConstantInt16ValueHandle(MetadataReader reader) 7678public ConstantInt16Value GetConstantInt16Value(ConstantInt16ValueHandle handle)