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