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

Returns the number of characters required to decode an array of bytes.

Overload List

When overridden in a derived class, returns the number of characters required to decode a range of an array of bytes.

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

Returns the number of characters required to decode an array of bytes.

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

See Also

Encoding Class | Encoding Members | System.Text Namespace