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