2 instantiations of ConstantCharArrayHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
325handle = new ConstantCharArrayHandle((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7250return new ConstantCharArrayHandle(this);
10 references to ConstantCharArrayHandle
System.Private.CoreLib (10)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
321public static uint Read(this NativeReader reader, uint offset, out ConstantCharArrayHandle handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (9)
524private readonly ConstantCharArrayHandle _handle; 526internal ConstantCharArray(MetadataReader reader, ConstantCharArrayHandle handle) 535public ConstantCharArrayHandle Handle => _handle; 562if (obj is ConstantCharArrayHandle) 563return _value == ((ConstantCharArrayHandle)obj)._value; 570public bool Equals(ConstantCharArrayHandle handle) => _value == handle._value; 576public static implicit operator Handle(ConstantCharArrayHandle handle) 7248public ConstantCharArrayHandle ToConstantCharArrayHandle(MetadataReader reader) 7638public ConstantCharArray GetConstantCharArray(ConstantCharArrayHandle handle)