UTF7Encoding.GetCharCount メソッド
バイト配列の一連の要素をデコードした結果、取得される文字数を計算します。
オーバーロードの一覧
バイト配列の指定した範囲の要素をデコードした結果、取得される文字数を計算します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Overrides Public Function GetCharCount(Byte(), Integer, Integer) As Integer
[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(unsigned char __gc[]);
使用例
[Visual Basic, C#, C++] UTF7Encoding を使用してバイト配列 bytes
からある範囲の要素をデコードし、その結果の文字数を GetCharCount メソッドを使用して返す方法を次の例に示します。
[Visual Basic, C#, C++] メモ ここでは、GetCharCount のオーバーロード形式のうちの 1 つだけについて、使用例を示します。その他の例については、各オーバーロード形式のトピックを参照してください。
Imports System
Imports System.Text
Class UnicodeEncodingExample
Public Shared Sub Main()
Dim bytes() As Byte = {85, 0, 110, 0, 105, 0, 99, 0, 111, 0, 100, 0, 101, 0}
Dim uni As New UnicodeEncoding()
Dim charCount As Integer = uni.GetCharCount(bytes, 2, 8)
Console.WriteLine("{0} characters needed to decode bytes.", charCount)
End Sub 'Main
End Class 'UnicodeEncodingExample
[C#]
using System;
using System.Text;
class UnicodeEncodingExample {
public static void Main() {
Byte[] bytes = new Byte[] {
85, 0, 110, 0, 105, 0, 99, 0, 111, 0, 100, 0, 101, 0
};
UnicodeEncoding Unicode = new UnicodeEncoding();
int charCount = Unicode.GetCharCount(bytes, 2, 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[] = {
85, 0, 110, 0, 105, 0, 99, 0, 111, 0, 100, 0, 101, 0
};
UnicodeEncoding* Unicode = new UnicodeEncoding();
int charCount = Unicode -> GetCharCount(bytes, 2, 8);
Console::WriteLine(S"{0} characters needed to decode bytes.", __box(charCount));
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。