Buffer.ByteLength メソッドとは? わかりやすく解説

Buffer.ByteLength メソッド

指定した配列バイト数を返します

名前空間: System
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

例外例外
例外種類条件

ArgumentNullException

arraynull 参照 (Visual Basic では Nothing) です。

ArgumentException

arrayプリミティブではありません。

使用例使用例

ByteLength メソッド使用して配列内のバイト数を返すコード例次に示します

' Example of the Buffer.ByteLength method.
Imports System
Imports Microsoft.VisualBasic

Module ByteLengthDemo

    Const formatter As String
 = "{0,10}{1,20}{2,9}{3,12}"

    Sub ArrayInfo( arr As Array, name As
 String )

        Dim byteLength As Integer
 = Buffer.ByteLength( arr )

        ' Display the array name, type, Length, and ByteLength.
        Console.WriteLine( formatter, name, arr.GetType, arr.Length, _
            byteLength )
    End Sub

    Sub Main( )
        Dim bytes( )   As Byte
    = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 }
        Dim bools( )   As Boolean
 = { True, False, True,
 False, True }
        Dim chars( )   As Char
    = { " "c, "$"c,
 """"c, "A"c, "{"c }
        Dim shorts( )  As Short
   = { 258, 259, 260, 261, 262, 263 }
        Dim singles( ) As Single
  = { 1, 678, 2.37E33, .00415, 8.9 }
        Dim doubles( ) As Double
  = { 2E-22, .003, 4.4E44, 555E55 }
        Dim longs( )   As Long
    = { 1, 10, 100, 1000, 10000, 100000 }

        Console.WriteLine( _
            "This example of the Buffer.ByteLength( Array ) "
 & _
            vbCrLf & "method generates the following output."
 & vbCrLf )
        Console.WriteLine( formatter, "Array name",
 "Array type", _
            "Length", "ByteLength"
 )
        Console.WriteLine( formatter, "----------",
 "----------", _
            "------", "----------"
 )

        ' Display the Length and ByteLength for each array.
        ArrayInfo( bytes, "bytes" )
        ArrayInfo( bools, "bools" )
        ArrayInfo( chars, "chars" )
        ArrayInfo( shorts, "shorts" )
        ArrayInfo( singles, "singles" )
        ArrayInfo( doubles, "doubles" )
        ArrayInfo( longs, "longs" )
    End Sub 
End Module 

' This example of the Buffer.ByteLength( Array )
' method generates the following output.
' 
' Array name          Array type   Length  ByteLength
' ----------          ----------   ------  ----------
'      bytes       System.Byte[]       10          10
'      bools    System.Boolean[]        5           5
'      chars       System.Char[]        5          10
'     shorts      System.Int16[]        6          12
'    singles     System.Single[]        5          20
'    doubles     System.Double[]        4          32
'      longs      System.Int64[]        6          48
// Example of the Buffer.ByteLength method.
using System;

class ByteLengthDemo
{
    const string formatter = "{0,10}{1
,20}{2,9}{3,12}";

    public static void ArrayInfo(
 Array arr, string name )
    {
        int byteLength = Buffer.ByteLength( arr );

        // Display the array name, type, Length, and ByteLength.
        Console.WriteLine( formatter, name, arr.GetType( ), 
            arr.Length, byteLength );
    }

    public static void Main(
 )
    {
        byte[ ]   bytes   = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 };
        bool[ ]   bools   = { true, false,
 true, false, true };
        char[ ]   chars   = { ' ', '$', '\"', 'A', '{' };
        short[ ]  shorts  = { 258, 259, 260, 261, 262, 263 };
        float[ ]  singles = { 1, 678, 2.37E33F, .00415F, 8.9F
 };
        double[ ] doubles = { 2E-22, .003, 4.4E44, 555E55 };
        long[ ]   longs   = { 1, 10, 100, 1000, 10000, 100000 };

        Console.WriteLine( 
            "This example of the Buffer.ByteLength( Array ) " +
            "\nmethod generates the following output.\n" );
        Console.WriteLine( formatter, "Array name", "Array type",
 
            "Length", "ByteLength" );
        Console.WriteLine( formatter, "----------", "----------",
 
            "------", "----------" );

        // Display the Length and ByteLength for each array.
        ArrayInfo( bytes, "bytes" );
        ArrayInfo( bools, "bools" );
        ArrayInfo( chars, "chars" );
        ArrayInfo( shorts, "shorts" );
        ArrayInfo( singles, "singles" );
        ArrayInfo( doubles, "doubles" );
        ArrayInfo( longs, "longs" );
    }
}

/*
This example of the Buffer.ByteLength( Array )
method generates the following output.

Array name          Array type   Length  ByteLength
----------          ----------   ------  ----------
     bytes       System.Byte[]       10          10
     bools    System.Boolean[]        5           5
     chars       System.Char[]        5          10
    shorts      System.Int16[]        6          12
   singles     System.Single[]        5          20
   doubles     System.Double[]        4          32
     longs      System.Int64[]        6          48
*/
// Example of the Buffer::ByteLength method.
using namespace System;

void ArrayInfo( Array^ arr, String^ name )
{
   int byteLength = Buffer::ByteLength( arr );
   
   // Display the array name, type, Length, and ByteLength.
   Console::WriteLine( "{0,10}{1,20}{2,9}{3,12}", name, arr->GetType(),
 arr->Length, byteLength );
}

int main()
{
   array<unsigned char>^bytes = {1,2,3,4,5,6,7,8,9,0};
   array<bool>^bools = {true,false
,true,false,true};
   array<Char>^chars = {' ','$','\"','A','{'};
   array<short>^shorts = {258,259,260,261,262,263};
   array<float>^singles = {1,678,2.37E33F,.00415F,8.9F};
   array<double>^doubles = {2E-22,.003,4.4E44,555E55};
   array<long>^longs = {1,10,100,1000,10000,100000};
   Console::WriteLine( "This example of the Buffer::ByteLength( Array* ) "
   "\nmethod generates the following output.\n" );
   Console::WriteLine( "{0,10}{1,20}{2,9}{3,12}", "Array name",
 "Array type", "Length", "ByteLength" );
   Console::WriteLine( "{0,10}{1,20}{2,9}{3,12}", "----------",
 "----------", "------", "----------" );
   
   // Display the Length and ByteLength for each array.
   ArrayInfo( bytes, "bytes" );
   ArrayInfo( bools, "bools" );
   ArrayInfo( chars, "chars" );
   ArrayInfo( shorts, "shorts" );
   ArrayInfo( singles, "singles" );
   ArrayInfo( doubles, "doubles" );
   ArrayInfo( longs, "longs" );
}

/*
This example of the Buffer::ByteLength( Array* )
method generates the following output.

Array name          Array type   Length  ByteLength
----------          ----------   ------  ----------
     bytes       System.Byte[]       10          10
     bools    System.Boolean[]        5           5
     chars       System.Char[]        5          10
    shorts      System.Int16[]        6          12
   singles     System.Single[]        5          20
   doubles     System.Double[]        4          32
     longs      System.Int32[]        6          24
*/
// Example of the Buffer.ByteLength method.
import System.*;
import System.Console;

class ByteLengthDemo
{
    private static String formatter = "{0
,10}{1,20}{2,9}{3,12}";

    public static void ArrayInfo(Array
 arr, String name)
    {
        int byteLength = Buffer.ByteLength(arr);

        // Display the array name, type, Length, and ByteLength.
        Object objArr[] = new Object [] { name, arr.GetType().ToString(),
 
            (Int32)arr.get_Length(), (Int32)byteLength };
        Console.WriteLine(formatter, objArr);
    } //ArrayInfo

    public static void main(String[]
 args)
    {
        ubyte bytes[] =  { 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 };
        boolean bools[] =  { true, false, true,
 false, true };
        char chars[] =  { ' ', '$', '"', 'A', '{' };
        short shorts[] =  { 258, 259, 260, 261, 262, 263 };
        float singles[] =  { 1F, 678F, 2.37E+33F,0.00415F,8.9F
 };
        double doubles[] =  { 2E-22, 0.003, 4.4E+44, 5.55E+57 };
        long longs[] =  { 1, 10, 100, 1000, 10000, 100000 };
        Object objArr1[] = new Object[] { "Array name","Array
 type", "Length", 
            "ByteLength" };

        Console.WriteLine("This example of the Buffer.ByteLength( Array )\n"
  
            + "method generates the following output.\n");
        Console.WriteLine(formatter, objArr1);

        Object objArr2[] = new Object[] { "----------",
 "----------", 
            "------", "----------" };
        Console.WriteLine(formatter, objArr2);

        // Display the Length and ByteLength for each array.
        ArrayInfo(bytes, "bytes");
        ArrayInfo(bools, "bools");
        ArrayInfo(chars, "chars");
        ArrayInfo(shorts, "shorts");
        ArrayInfo(singles, "singles");
        ArrayInfo(doubles, "doubles");
        ArrayInfo(longs, "longs");
    } //main
} //ByteLengthDemo

/*
This example of the Buffer.ByteLength( Array )
method generates the following output.

Array name          Array type   Length  ByteLength
----------          ----------   ------  ----------
     bytes       System.Byte[]       10          10
     bools    System.Boolean[]        5           5
     chars       System.Char[]        5          10
    shorts      System.Int16[]        6          12
   singles     System.Single[]        5          20
   doubles     System.Double[]        4          32
     longs      System.Int64[]        6          48
*/
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照


このページでは「.NET Framework クラス ライブラリ リファレンス」からBuffer.ByteLength メソッドを検索した結果を表示しています。
Weblioに収録されているすべての辞書からBuffer.ByteLength メソッドを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からBuffer.ByteLength メソッド を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「Buffer.ByteLength メソッド」の関連用語

Buffer.ByteLength メソッドのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



Buffer.ByteLength メソッドのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS