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!

Encoding.GetString (Byte[])

Returns a string containing the decoded representation of the specified byte array.

[Visual Basic]
Overloads Overridable Public Function GetString( _
   ByVal bytes() As Byte _
) As String
[C#]
public virtual string GetString(
   byte[] bytes
);
[C++]
public: virtual String* GetString(
   unsigned char* bytes[]
);
[JScript]
public function GetString(
   bytes : Byte[]
) : String;

Parameters

bytes
The byte array to decode.

Return Value

A string containing the decoded representation of the specified byte array.

Exceptions

Exception Type Condition
ArgumentNullException The bytes parameter is a null reference (in Visual Basic Nothing).

See Also

Encoding Class | Encoding Members | System.Text Namespace | Encoding.GetString Overload List