This topic has not yet been rated - Rate this topic

ASCIIEncoding.GetByteCount Method (Char*, Int32)

Calculates the number of bytes produced by encoding a set of characters starting at the specified character pointer.

This API is not CLS-compliant. The CLS-compliant alternative is GetByteCount(Char[], Int32, Int32).

Namespace:  System.Text
Assembly:  mscorlib (in mscorlib.dll)
[CLSCompliantAttribute(false)]
[ComVisibleAttribute(false)]
public override int GetByteCount(
	char* chars,
	int count
)

Parameters

chars
Type: System.Char*
A pointer to the first character to encode.
count
Type: System.Int32
The number of characters to encode.

Return Value

Type: System.Int32
The number of bytes produced by encoding the specified characters.
Exception Condition
ArgumentNullException

chars is null.

ArgumentOutOfRangeException

count is less than zero.

-or-

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.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1
  • SecurityCriticalAttribute  

    Requires full trust for the immediate caller. This member cannot be used by partially trusted or transparent code.

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ