UTF8Encoding.GetCharCount Method (Byte*, Int32)
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.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.