Represents an unsigned byte (1-byte uint) value.
[Visual Basic] Public Structure Byte Implements IComparable, IFormattable, IConvertible [C#] public struct Byte : IComparable, IFormattable, IConvertible [C++] public __value struct Byte : public IComparable, IFormattable, IConvertible
[JScript] In JScript, you can use the structures in the NGWS frameworks, but you cannot define your own.
The Byte value type can represent positive integers with two significant digits in the range 0 to positive 255, inclusive. This class extends the Value class and provides object representation for the byte primitive type.
See the SByte class for a representation of the signed bytes with a range of negative 127 through positive 127. The Byte class represents the unsigned bytes (ubytes) with a range of 0 through positive 255.
VJ has an ubyte that maps to Byte and a signed byte type that maps to SByte.
Namespace: System
Assembly: mscorlib.dll