This topic has not yet been rated - Rate this topic

UTF8Encoding.GetCharCount Method (Byte*, Int32)

Note: This method is new in the .NET Framework version 2.0.

Calculates the number of characters produced by decoding a sequence of bytes starting at the specified byte pointer.

This method is not CLS-compliant.  

Namespace: System.Text
Assembly: mscorlib (in mscorlib.dll)

[ComVisibleAttribute(false)] 
[CLSCompliantAttribute(false)] 
public override int GetCharCount (
	byte* bytes,
	int count
)
J# does not support APIs that consume or return unsafe types.
JScript does not support APIs that consume or return unsafe types.

Parameters

bytes

A pointer to the first byte to decode.

count

The number of bytes to decode.

Return Value

The number of characters produced by decoding the specified sequence of bytes.
Exception typeCondition

ArgumentNullException

bytes is a null reference (Nothing in Visual Basic).

ArgumentOutOfRangeException

count is less than zero.

-or-

The resulting number of bytes is greater than the maximum number that can be returned as an int.

ArgumentException

Error detection is enabled, and bytes contains an invalid sequence of bytes.

To calculate the exact array size required by GetChars to store the resulting characters, use GetCharCount. To calculate the maximum array size, use GetMaxCharCount. The GetCharCount method generally allows you to allocate less memory, whereas the GetMaxCharCount method generally executes faster.

With error detection, an invalid sequence causes this method to throw an ArgumentException. Without error detection, invalid sequences are ignored, and no exception is thrown.

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

.NET Framework

Supported in: 2.0
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.