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

Decodes the specified byte array into a string.

Overload List

Returns a string containing the decoded representation of a range of bytes in a byte array.

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

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

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

See Also

Encoding Class | Encoding Members | System.Text Namespace