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

Decodes a range of bytes in an array into an array of characters.

Overload List

Decodes a range of bytes from a byte array into a character array.

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

When overridden in a derived class, decodes a range of bytes in a byte array into a range of characters in a character array.

[Visual Basic] Overloads MustOverride Public Function GetChars(Byte(), Integer, Integer, Char(), Integer) As Integer
[C#] public abstract int GetChars(byte[], int, int, char[], int);
[C++] public: virtual int GetChars(unsigned char*[], int, int, __wchar_t[], int) = 0;
[JScript] public abstract function GetChars(Byte[], int, int, Char[], int) : int;

Decodes a range of bytes in an array into an array of characters.

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

See Also

Encoding Class | Encoding Members | System.Text Namespace