src\libraries\System.Private.CoreLib\src\System\Int16.cs (28)
65return m_value - ((short)value).m_value;
73return m_value - value;
82return m_value == ((short)obj).m_value;
88return m_value == obj;
94return m_value;
100return Number.Int32ToDecStr(m_value);
105return Number.FormatInt32(m_value, 0, null, provider);
115return Number.FormatInt32(m_value, 0x0000FFFF, format, provider);
120return Number.TryFormatInt32(m_value, 0x0000FFFF, format, provider, destination, out charsWritten);
126return Number.TryFormatInt32(m_value, 0x0000FFFF, format, provider, utf8Destination, out bytesWritten);
187return Convert.ToBoolean(m_value);
192return Convert.ToChar(m_value);
197return Convert.ToSByte(m_value);
202return Convert.ToByte(m_value);
207return m_value;
212return Convert.ToUInt16(m_value);
217return Convert.ToInt32(m_value);
222return Convert.ToUInt32(m_value);
227return Convert.ToInt64(m_value);
232return Convert.ToUInt64(m_value);
237return Convert.ToSingle(m_value);
242return Convert.ToDouble(m_value);
247return Convert.ToDecimal(m_value);
450short value = m_value;
468if (BinaryPrimitives.TryWriteInt16BigEndian(destination, m_value))
481if (BinaryPrimitives.TryWriteInt16LittleEndian(destination, m_value))