Obtains the number of bytes required to encode a specified character array.
When overridden in a derived class, returns the number of bytes required to encode a range of characters in the specified character array.
[Visual Basic] Overloads MustOverride Public Function GetByteCount(Char(), Integer, Integer) As Integer
[C#] public abstract int GetByteCount(char[], int, int);
[C++] public: virtual int GetByteCount(__wchar_t*[], int, int) = 0;
[JScript] public abstract function GetByteCount(Char[], int, int) : int;
Returns the number of bytes required to encode a specified character array.
[Visual Basic] Overloads Overridable Public Function GetByteCount(Char()) As Integer
[C#] public virtual int GetByteCount(char[]);
[C++] public: virtual int GetByteCount(__wchar_t*[]);
[JScript] public function GetByteCount(Char[]) : int;