12 references to UInt64
ILAssembler (2)
GrammarVisitor.cs (2)
2516SerializationTypeCode.UInt64 => valueBytes.Length >= 8 ? BitConverter.ToUInt64(valueBytes) : 0uL, 4862CILParser.UINT64 => SerializationTypeCode.UInt64,
ILCompiler.MetadataTransform (3)
ILCompiler\Metadata\Transform.CustomAttribute.cs (3)
122case <= Ecma.SerializationTypeCode.UInt64: return module.Context.GetWellKnownType((Cts.WellKnownType)typeCode); 169Ecma.SerializationTypeCode.UInt64 => new ConstantUInt64Value { Value = valueReader.ReadUInt64() }, 230Ecma.SerializationTypeCode.UInt64 => new ConstantUInt64Array { Value = GetCustomAttributeConstantArrayElements<ulong>(ref valueReader, count) },
Microsoft.CodeAnalysis (3)
MetadataReader\MetadataDecoder.cs (2)
1390case SerializationTypeCode.UInt64: 1514case SerializationTypeCode.UInt64:
MetadataReader\MetadataTypeCodeExtensions.cs (1)
170return SerializationTypeCode.UInt64;
System.Reflection.Emit (1)
System\Reflection\Emit\CustomAttributeWrapper.cs (1)
169SerializationTypeCode.UInt64 => typeof(ulong),
System.Reflection.Metadata (3)
System\Reflection\Metadata\Ecma335\CustomAttributeDecoder.cs (2)
262case SerializationTypeCode.UInt64: 356case SerializationTypeCode.UInt64:
System\Reflection\Metadata\Ecma335\Encoding\BlobEncoders.cs (1)
842public void UInt64() => WriteTypeCode(SerializationTypeCode.UInt64);