August 2003
Intermediate to advanced
928 pages
32h 1m
English
Byte
This simple value type represents an
unsigned 8-bit integer that can vary
in value from 0 to 255. The Parse( ) method
converts a number in a string (such as 122) into a
Byte object. This type is available in C# through
the byte alias.
public struct Byte : IComparable, IFormattable, IConvertible { // Public Static Fields public const byte MaxValue; // =255 public const byte MinValue; // =0 // Public Static Methods public static byte Parse(strings); public static byte Parse(strings, IFormatProviderprovider); public static byte Parse(strings, System.Globalization.NumberStylesstyle); public static byte Parse(strings, System.Globalization.NumberStylesstyle, IFormatProviderprovider); // Public Instance Methods public int CompareTo(objectvalue); // implements IComparable public override bool Equals(objectobj); // overrides ValueType public override int GetHashCode( ); // overrides ValueType public TypeCode GetTypeCode( ); // implements IConvertible public override string ToString( ); // overrides ValueType public string ToString(IFormatProviderprovider); // implements IConvertible public string ToString(stringformat); public string ToString(stringformat, IFormatProviderprovider); // implements IFormattable }
Object
→
ValueType
→
Byte(IComparable, IFormattable, IConvertible)
Multiple types
Multiple types