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!

Convert.ToString (Byte, Int32)

Converts an 8-bit unsigned integer to a string in a specified base.

[Visual Basic]
Overloads Public Shared Function ToString( _
   ByVal value As Byte, _
   ByVal toBase As Integer _
) As String
[C#]
public static string ToString(
   byte value,
   int toBase
);
[C++]
public: static String* ToString(
   unsigned char value,
   int toBase
);
[JScript]
public static function ToString(
   value : Byte,
   toBase : int
) : String;

Parameters

value
The value to be converted.
toBase
[To be supplied.]

Return Value

The converted value.

Exceptions

Exception Type Condition
ArgumentException if fromBase is not 2, 8, 10, or 16.

See Also

Convert Class | Convert Members | System Namespace | Convert.ToString Overload List