2 instantiations of ConstantInt16ArrayHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
388handle = new ConstantInt16ArrayHandle((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7285return new ConstantInt16ArrayHandle(this);
10 references to ConstantInt16ArrayHandle
System.Private.CoreLib (10)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
384public static uint Read(this NativeReader reader, uint offset, out ConstantInt16ArrayHandle handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (9)
1092private readonly ConstantInt16ArrayHandle _handle; 1094internal ConstantInt16Array(MetadataReader reader, ConstantInt16ArrayHandle handle) 1103public ConstantInt16ArrayHandle Handle => _handle; 1130if (obj is ConstantInt16ArrayHandle) 1131return _value == ((ConstantInt16ArrayHandle)obj)._value; 1138public bool Equals(ConstantInt16ArrayHandle handle) => _value == handle._value; 1144public static implicit operator Handle(ConstantInt16ArrayHandle handle) 7283public ConstantInt16ArrayHandle ToConstantInt16ArrayHandle(MetadataReader reader) 7673public ConstantInt16Array GetConstantInt16Array(ConstantInt16ArrayHandle handle)