ASCIIEncoding::GetByteCount Method (String^)
Calculates the number of bytes produced by encoding the characters in the specified String.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- chars
-
Type:
System::String^
The String containing the set of characters to encode.
| Exception | Condition |
|---|---|
| ArgumentNullException | chars is null. |
| ArgumentOutOfRangeException | The resulting number of bytes is greater than the maximum number that can be returned as an integer. |
| EncoderFallbackException | A fallback occurred (see Character Encoding in the .NET Framework for complete explanation) -and- EncoderFallback is set to EncoderExceptionFallback. |
To calculate the exact array size required by GetBytes to store the resulting bytes, the application uses GetByteCount. To calculate the maximum array size, the application should use GetMaxByteCount. The GetByteCount method generally allows allocation of less memory, while the GetMaxByteCount method generally executes faster.
The following example demonstrates how to use the GetByteCount method to return the number of bytes required to encode a string using ASCIIEncoding.
Available since 10
.NET Framework
Available since 1.1