src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (28)
69return m_value - ((sbyte)obj).m_value;
74return m_value - value;
84return m_value == ((sbyte)obj).m_value;
90return m_value == obj;
96return m_value;
103return Number.Int32ToDecStr(m_value);
113return Number.FormatInt32(m_value, 0, null, provider);
118return Number.FormatInt32(m_value, 0x000000FF, format, provider);
123return Number.TryFormatInt32(m_value, 0x000000FF, format, provider, destination, out charsWritten);
129return Number.TryFormatInt32(m_value, 0x000000FF, format, provider, utf8Destination, out bytesWritten);
184return Convert.ToBoolean(m_value);
189return Convert.ToChar(m_value);
194return m_value;
199return Convert.ToByte(m_value);
204return Convert.ToInt16(m_value);
209return Convert.ToUInt16(m_value);
214return m_value;
219return Convert.ToUInt32(m_value);
224return Convert.ToInt64(m_value);
229return Convert.ToUInt64(m_value);
234return Convert.ToSingle(m_value);
239return Convert.ToDouble(m_value);
244return Convert.ToDecimal(m_value);
415sbyte value = m_value;
435destination[0] = (byte)m_value;
449destination[0] = (byte)m_value;