2 writes to Value
ILCompiler.MetadataTransform (2)
ILCompiler\Metadata\Transform.Constant.cs (1)
48
return new ConstantUInt32Value {
Value
= blob.ReadUInt32() };
ILCompiler\Metadata\Transform.CustomAttribute.cs (1)
167
Ecma.SerializationTypeCode.UInt32 => new ConstantUInt32Value {
Value
= valueReader.ReadUInt32() },
5 references to Value
ILCompiler.MetadataTransform (5)
Internal\Metadata\NativeFormat\Writer\ConstantValues.cs (1)
151
return string.Format("(UInt32){0}", this.
Value
);
Internal\Metadata\NativeFormat\Writer\NativeFormatWriterGen.cs (4)
1947
if (
Value
!= other.
Value
) return false;
1957
hash = ((hash << 13) - (hash >> 19)) ^
Value
.GetHashCode();
1965
writer.Write(
Value
);