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