2 instantiations of ConstantCharValueHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
334handle = new ConstantCharValueHandle((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7255return new ConstantCharValueHandle(this);
10 references to ConstantCharValueHandle
System.Private.CoreLib (10)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
330public static uint Read(this NativeReader reader, uint offset, out ConstantCharValueHandle handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (9)
604private readonly ConstantCharValueHandle _handle; 606internal ConstantCharValue(MetadataReader reader, ConstantCharValueHandle handle) 615public ConstantCharValueHandle Handle => _handle; 642if (obj is ConstantCharValueHandle) 643return _value == ((ConstantCharValueHandle)obj)._value; 650public bool Equals(ConstantCharValueHandle handle) => _value == handle._value; 656public static implicit operator Handle(ConstantCharValueHandle handle) 7253public ConstantCharValueHandle ToConstantCharValueHandle(MetadataReader reader) 7643public ConstantCharValue GetConstantCharValue(ConstantCharValueHandle handle)