2 instantiations of ConstantBooleanArrayHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
289handle = new ConstantBooleanArrayHandle((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7230return new ConstantBooleanArrayHandle(this);
10 references to ConstantBooleanArrayHandle
System.Private.CoreLib (10)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
285public static uint Read(this NativeReader reader, uint offset, out ConstantBooleanArrayHandle handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (9)
204private readonly ConstantBooleanArrayHandle _handle; 206internal ConstantBooleanArray(MetadataReader reader, ConstantBooleanArrayHandle handle) 215public ConstantBooleanArrayHandle Handle => _handle; 242if (obj is ConstantBooleanArrayHandle) 243return _value == ((ConstantBooleanArrayHandle)obj)._value; 250public bool Equals(ConstantBooleanArrayHandle handle) => _value == handle._value; 256public static implicit operator Handle(ConstantBooleanArrayHandle handle) 7228public ConstantBooleanArrayHandle ToConstantBooleanArrayHandle(MetadataReader reader) 7618public ConstantBooleanArray GetConstantBooleanArray(ConstantBooleanArrayHandle handle)