2 writes to Value
ILCompiler.MetadataTransform (2)
ILCompiler\Metadata\Transform.Constant.cs (1)
26return new ConstantBooleanValue { Value = blob.ReadBoolean() };
ILCompiler\Metadata\Transform.CustomAttribute.cs (1)
160Ecma.SerializationTypeCode.Boolean => new ConstantBooleanValue { Value = valueReader.ReadBoolean() },
5 references to Value
ILCompiler.MetadataTransform (5)
Internal\Metadata\NativeFormat\Writer\ConstantValues.cs (1)
13return string.Format("(Boolean){0}", this.Value);
Internal\Metadata\NativeFormat\Writer\NativeFormatWriterGen.cs (4)
262if (Value != other.Value) return false; 272hash = ((hash << 13) - (hash >> 19)) ^ Value.GetHashCode(); 280writer.Write(Value);