20 references to ReadInt64
Microsoft.CodeAnalysis.Workspaces (9)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Serialization\ObjectReader.cs (4)
148Low64 = ReadInt64(), 149High64 = ReadInt64() 197case TypeCode.Int64: return ReadInt64(); 212return DateTime.FromBinary(ReadInt64());
Workspace\Host\TemporaryStorage\TemporaryStorageIdentifier.cs (2)
21reader.ReadInt64(), 22reader.ReadInt64());
Workspace\Solution\Checksum.cs (2)
100=> new(reader.ReadInt64(), reader.ReadInt64());
Workspace\Solution\StateChecksums.cs (1)
88var frozenSourceGeneratedDocumentGenerationDateTimes = reader.ReadArray(r => new DateTime(r.ReadInt64()));
Microsoft.CodeAnalysis.Workspaces.UnitTests (11)
ObjectSerializationTests.cs (11)
96? (T)Enum.ToObject(typeof(T), r.ReadInt64()) 439Assert.Equal(Int64.MaxValue, reader.ReadInt64()); 522Assert.Equal((long)ConsoleColor.Cyan, reader.ReadInt64()); 523Assert.Equal((long)EByte.Value, reader.ReadInt64()); 524Assert.Equal((long)ESByte.Value, reader.ReadInt64()); 525Assert.Equal((long)EShort.Value, reader.ReadInt64()); 526Assert.Equal((long)EUShort.Value, reader.ReadInt64()); 527Assert.Equal((long)EInt.Value, reader.ReadInt64()); 528Assert.Equal((long)EUInt.Value, reader.ReadInt64()); 529Assert.Equal((long)ELong.Value, reader.ReadInt64()); 530Assert.Equal((long)EULong.Value, reader.ReadInt64());