Returns the number of characters required to decode an array of bytes.
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;