14 references to ToInt64
mscorlib (3)
system\bitconverter.cs (2)
316return (ulong)ToInt64(value, startIndex); 347long val = ToInt64(value, startIndex);
system\collections\hashtable.cs (1)
1834ret = BitConverter.ToInt64(data, currentIndex);
System.Data (4)
fx\src\data\System\Data\Sql\sqlnorm.cs (1)
454SetValue(fi, recvr, BitConverter.ToInt64(b, 0));
fx\src\data\System\Data\SqlClient\TdsParser.cs (1)
5069longValue = BitConverter.ToInt64(unencryptedBytes, 0);
fx\src\data\System\Data\SqlClient\TdsParserStateObject.cs (2)
1411value = BitConverter.ToInt64(_bTmp, 0); 1419value = BitConverter.ToInt64(_inBuff, _inBytesUsed);
System.Messaging (3)
System\Messaging\ActiveXMessageFormatter.cs (3)
172return Decimal.FromOACurrency(BitConverter.ToInt64(newBytes, 0)); 177return new DateTime(BitConverter.ToInt64(newBytes, 0)); 208return BitConverter.ToInt64(bytes, 0);
System.ServiceModel (3)
System\ServiceModel\MsmqIntegration\ActiveXSerializer.cs (3)
132return Decimal.FromOACurrency(BitConverter.ToInt64(bytes, 0)); 142return new DateTime(BitConverter.ToInt64(bytes, 0)); 198return BitConverter.ToInt64(bytes, 0);
System.Web (1)
Security\AnonymousIdentificationModule.cs (1)
364DateTime expireDate = DateTime.FromFileTimeUtc(BitConverter.ToInt64(bBlob, 0));