次の方法で共有


ASCIIEncoding.GetCharCount メソッド

バイト配列の一連の要素をデコードした結果、取得される文字数を計算します。

オーバーロードの一覧

バイト配列の指定した範囲の要素をデコードした結果、取得される文字数を計算します。

.NET Compact Framework でもサポート。

[Visual Basic] Overloads Overrides Public Function GetCharCount(Byte(), Integer, Integer) As Integer

[C#] public override int GetCharCount(byte[], int, int);

[C++] public: int GetCharCount(unsigned char __gc[], int, int);

[JScript] public override function GetCharCount(Byte[], int, int) : int;

Encoding から継承されます。

.NET Compact Framework でもサポート。

[Visual Basic] Overloads Public Overridable Function GetCharCount(Byte()) As Integer

[C#] public virtual int GetCharCount(byte[]);

[C++] public: virtual int GetCharCount(unsigned char __gc[]);

[JScript] public function GetCharCount(Byte[]) : int;

使用例

[Visual Basic, C#, C++] バイト配列からある範囲の要素をデコードし、その結果の文字数を GetCharCount メソッドを使用して返す方法を次の例に示します。

[Visual Basic, C#, C++] メモ   ここでは、GetCharCount のオーバーロード形式のうちの 1 つだけについて、使用例を示します。その他の例については、各オーバーロード形式のトピックを参照してください。

 
Imports System
Imports System.Text

Class ASCIIEncodingExample
    Public Shared Sub Main()
        Dim bytes() As Byte = { _
             65,  83,  67,  73,  73,  32,  69, _
            110,  99, 111, 100, 105, 110, 103, _
             32,  69, 120,  97, 109, 112, 108, 101}
      
        Dim ascii As New ASCIIEncoding()
        Dim charCount As Integer = ascii.GetCharCount(bytes, 6, 8)
        Console.WriteLine("{0} characters needed to decode bytes.", charCount)
    End Sub
End Class

[C#] 
using System;
using System.Text;

class ASCIIEncodingExample {
    public static void Main() {
        Byte[] bytes = new Byte[] {
             65,  83,  67,  73,  73,  32,  69,
            110,  99, 111, 100, 105, 110, 103,
             32,  69, 120,  97, 109, 112, 108, 101
        };

        ASCIIEncoding ascii = new ASCIIEncoding();
        int charCount = ascii.GetCharCount(bytes, 6, 8);
        Console.WriteLine(
            "{0} characters needed to decode bytes.", charCount
        );
    }
}

[C++] 
#using <mscorlib.dll>
using namespace System;
using namespace System::Text;

int main()
{
   Byte bytes[] =  
   {
      65,  83,  67,  73,  73,  32,  69,
      110,  99, 111, 100, 105, 110, 103,
      32,  69, 120,  97, 109, 112, 108, 101
   };

   ASCIIEncoding* ascii = new ASCIIEncoding();
   int charCount = ascii -> GetCharCount(bytes, 6, 8);
   Console::WriteLine(S"{0} characters needed to decode bytes.", __box(charCount));
}

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

参照

ASCIIEncoding クラス | ASCIIEncoding メンバ | System.Text 名前空間