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