src\libraries\System.Private.CoreLib\src\System\Byte.cs (29)
66return m_value - (((byte)value).m_value);
71return m_value - value;
81return m_value == ((byte)obj).m_value;
87return m_value == obj;
93return m_value;
144return Number.UInt32ToDecStr(m_value);
149return Number.FormatUInt32(m_value, format, null);
154return Number.UInt32ToDecStr(m_value);
159return Number.FormatUInt32(m_value, format, provider);
164return Number.TryFormatUInt32(m_value, format, provider, destination, out charsWritten);
170return Number.TryFormatUInt32(m_value, format, provider, utf8Destination, out bytesWritten);
184return Convert.ToBoolean(m_value);
189return Convert.ToChar(m_value);
194return Convert.ToSByte(m_value);
199return m_value;
204return Convert.ToInt16(m_value);
209return Convert.ToUInt16(m_value);
214return Convert.ToInt32(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);
363int IBinaryInteger<byte>.GetShortestBitLength() => (sizeof(byte) * 8) - LeadingZeroCount(m_value);
373byte value = m_value;
391byte value = m_value;