UnicodeEncoding.GetMaxByteCount Method

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Calculates the maximum number of bytes produced by encoding the specified number of characters.

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

Syntax

'Declaration
Public Overrides Function GetMaxByteCount ( _
    charCount As Integer _
) As Integer
public override int GetMaxByteCount(
    int charCount
)

Parameters

  • charCount
    Type: System.Int32
    The number of characters to encode.

Return Value

Type: System.Int32
The maximum number of bytes produced by encoding the specified number of characters.

Exceptions

Exception Condition
ArgumentOutOfRangeException

charCount is less than zero.

-or-

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

Remarks

To calculate the exact array size required by the GetBytes method to store the resulting bytes, call the GetByteCount method. To calculate the maximum array size, call the GetMaxByteCount method. The GetByteCount method generally allocates less memory, while the GetMaxByteCount method generally executes faster.

The GetMaxByteCount method returns a worst-case number. If a fallback is chosen with a potentially large string, GetMaxByteCount can return large values.

In most cases, this method retrieves reasonable numbers for small strings. For large strings, you might have to choose between using very large buffers and catching errors in the rare case that a more reasonable buffer is exceeded. You might also want to consider a different approach using GetByteCount or Encoder.Convert.

GetMaxByteCount has no relation to GetChars. If your application needs a similar function to use with GetChars, it should use GetMaxCharCount.

NoteNote:

GetMaxByteCount(N) is not necessarily the same value as N* GetMaxByteCount(1).

Examples

The following code example demonstrates how to use the GetMaxByteCount method to return the maximum number of bytes required to encode a specified number of characters.

Imports System.Text

Class Example

   Public Shared Sub Demo(ByVal outputBlock As System.Windows.Controls.TextBlock)
      Dim uni As New UnicodeEncoding()
      Dim charCount As Integer = 2
      Dim maxByteCount As Integer = uni.GetMaxByteCount(charCount)
      outputBlock.Text += String.Format("Maximum of {0} bytes needed to encode {1} characters.", maxByteCount, charCount) & vbCrLf
   End Sub 'Main
End Class 'UnicodeEncodingExample
using System;
using System.Text;

class Example
{
   public static void Demo(System.Windows.Controls.TextBlock outputBlock)
   {
      UnicodeEncoding Unicode = new UnicodeEncoding();
      int charCount = 2;
      int maxByteCount = Unicode.GetMaxByteCount(charCount);
      outputBlock.Text += String.Format(
          "Maximum of {0} bytes needed to encode {1} characters.",
          maxByteCount,
          charCount
      ) + "\n";
   }
}

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Xbox 360, Windows Phone OS 7.0

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.