2 writes to Value
ILCompiler.MetadataTransform (2)
ILCompiler\Metadata\Transform.Constant.cs (1)
50
return new ConstantUInt64Value {
Value
= blob.ReadUInt64() };
ILCompiler\Metadata\Transform.CustomAttribute.cs (1)
169
Ecma.SerializationTypeCode.UInt64 => new ConstantUInt64Value {
Value
= valueReader.ReadUInt64() },
5 references to Value
ILCompiler.MetadataTransform (5)
Internal\Metadata\NativeFormat\Writer\ConstantValues.cs (1)
185
return string.Format("(UInt64){0}", this.
Value
);
Internal\Metadata\NativeFormat\Writer\NativeFormatWriterGen.cs (4)
2076
if (
Value
!= other.
Value
) return false;
2086
hash = ((hash << 13) - (hash >> 19)) ^
Value
.GetHashCode();
2094
writer.Write(
Value
);