24 references to ToInt16
mscorlib (18)
microsoft\win32\win32native.cs (16)
350StandardDate.Year = BitConverter.ToInt16(bytes, 12); 351StandardDate.Month = BitConverter.ToInt16(bytes, 14); 352StandardDate.DayOfWeek = BitConverter.ToInt16(bytes, 16); 353StandardDate.Day = BitConverter.ToInt16(bytes, 18); 354StandardDate.Hour = BitConverter.ToInt16(bytes, 20); 355StandardDate.Minute = BitConverter.ToInt16(bytes, 22); 356StandardDate.Second = BitConverter.ToInt16(bytes, 24); 357StandardDate.Milliseconds = BitConverter.ToInt16(bytes, 26); 359DaylightDate.Year = BitConverter.ToInt16(bytes, 28); 360DaylightDate.Month = BitConverter.ToInt16(bytes, 30); 361DaylightDate.DayOfWeek = BitConverter.ToInt16(bytes, 32); 362DaylightDate.Day = BitConverter.ToInt16(bytes, 34); 363DaylightDate.Hour = BitConverter.ToInt16(bytes, 36); 364DaylightDate.Minute = BitConverter.ToInt16(bytes, 38); 365DaylightDate.Second = BitConverter.ToInt16(bytes, 40); 366DaylightDate.Milliseconds = BitConverter.ToInt16(bytes, 42);
system\bitconverter.cs (2)
169return (char)ToInt16(value, startIndex); 284return (ushort)ToInt16(value, startIndex);
System.Data (4)
fx\src\data\System\Data\Odbc\OdbcConnection.cs (1)
412resultValue = BitConverter.ToInt16(buffer, 0);
fx\src\data\System\Data\Sql\sqlnorm.cs (1)
364SetValue(fi, recvr, BitConverter.ToInt16(b, 0));
fx\src\data\System\Data\SqlClient\SqlColumnEncryptionCertificateStoreProvider.cs (2)
116Int16 keyPathLength = BitConverter.ToInt16(encryptedColumnEncryptionKey, currentIndex); 120int cipherTextLength = BitConverter.ToInt16(encryptedColumnEncryptionKey, currentIndex);
System.Messaging (1)
System\Messaging\ActiveXMessageFormatter.cs (1)
188return BitConverter.ToInt16(bytes, 0);
System.ServiceModel (1)
System\ServiceModel\MsmqIntegration\ActiveXSerializer.cs (1)
162return BitConverter.ToInt16(bytes, 0);