src\runtime\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);
181return Convert.ToBoolean(m_value);
186return Convert.ToChar(m_value);
191return Convert.ToSByte(m_value);
196return Convert.ToByte(m_value);
201return m_value;
206return Convert.ToUInt16(m_value);
211return Convert.ToInt32(m_value);
216return Convert.ToUInt32(m_value);
221return Convert.ToInt64(m_value);
226return Convert.ToUInt64(m_value);
231return Convert.ToSingle(m_value);
236return Convert.ToDouble(m_value);
241return Convert.ToDecimal(m_value);
438short value = m_value;
456if (BinaryPrimitives.TryWriteInt16BigEndian(destination, m_value))
469if (BinaryPrimitives.TryWriteInt16LittleEndian(destination, m_value))