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);
190return Convert.ToBoolean(m_value);
195return Convert.ToChar(m_value);
200return m_value;
205return Convert.ToByte(m_value);
210return Convert.ToInt16(m_value);
215return Convert.ToUInt16(m_value);
220return m_value;
225return Convert.ToUInt32(m_value);
230return Convert.ToInt64(m_value);
235return Convert.ToUInt64(m_value);
240return Convert.ToSingle(m_value);
245return Convert.ToDouble(m_value);
250return Convert.ToDecimal(m_value);
411sbyte value = m_value;
431destination[0] = (byte)m_value;
445destination[0] = (byte)m_value;