2 writes to Value
ILCompiler.MetadataTransform (2)
ILCompiler\Metadata\Transform.Constant.cs (1)
46return new ConstantUInt16Value { Value = blob.ReadUInt16() };
ILCompiler\Metadata\Transform.CustomAttribute.cs (1)
165Ecma.SerializationTypeCode.UInt16 => new ConstantUInt16Value { Value = valueReader.ReadUInt16() },
5 references to Value
ILCompiler.MetadataTransform (5)
Internal\Metadata\NativeFormat\Writer\ConstantValues.cs (1)
117return string.Format("(UInt16){0}", this.Value);
Internal\Metadata\NativeFormat\Writer\NativeFormatWriterGen.cs (4)
1818if (Value != other.Value) return false; 1828hash = ((hash << 13) - (hash >> 19)) ^ Value.GetHashCode(); 1836writer.Write(Value);