11 references to UInt16
ILAssembler (2)
GrammarVisitor.cs (2)
2512SerializationTypeCode.UInt16 => valueBytes.Length >= 2 ? BitConverter.ToUInt16(valueBytes) : (ushort)0, 4858CILParser.UINT16 => SerializationTypeCode.UInt16,
ILCompiler.MetadataTransform (2)
ILCompiler\Metadata\Transform.CustomAttribute.cs (2)
165Ecma.SerializationTypeCode.UInt16 => new ConstantUInt16Value { Value = valueReader.ReadUInt16() }, 226Ecma.SerializationTypeCode.UInt16 => new ConstantUInt16Array { Value = GetCustomAttributeConstantArrayElements<ushort>(ref valueReader, count) },
Microsoft.CodeAnalysis (3)
MetadataReader\MetadataDecoder.cs (2)
1386case SerializationTypeCode.UInt16: 1502case SerializationTypeCode.UInt16:
MetadataReader\MetadataTypeCodeExtensions.cs (1)
164return SerializationTypeCode.UInt16;
System.Reflection.Emit (1)
System\Reflection\Emit\CustomAttributeWrapper.cs (1)
165SerializationTypeCode.UInt16 => typeof(ushort),
System.Reflection.Metadata (3)
System\Reflection\Metadata\Ecma335\CustomAttributeDecoder.cs (2)
260case SerializationTypeCode.UInt16: 348case SerializationTypeCode.UInt16:
System\Reflection\Metadata\Ecma335\Encoding\BlobEncoders.cs (1)
838public void UInt16() => WriteTypeCode(SerializationTypeCode.UInt16);