NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Byte Structure

Represents an unsigned byte (1-byte uint) value.

Object
   ValueType
      Byte

[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.

Remarks

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.

Requirements

Namespace: System

Assembly: mscorlib.dll

See Also

Byte Members | System Namespace | IComparable