BitConverter.IsLittleEndian フィールド
アセンブリ: mscorlib (mscorlib.dll 内)


この値は、アーキテクチャがリトル エンディアンの場合は true、ビッグ エンディアンの場合は falseです。
データを格納する際のバイト順は、コンピュータ アーキテクチャにより異なります。"ビッグ エンディアン" は、ワードの左端が最上位バイトであることを意味します"リトル エンディアン" は、ワードの右端が最上位バイトであることを意味します。

IsLittleEndian フィールドの使用方法については、次のコード例を参照してください。
' Example of the BitConverter.IsLittleEndian field. Imports System Imports Microsoft.VisualBasic Module LittleEndDemo Sub Main( ) Console.WriteLine( _ "This example of the BitConverter.IsLittleEndian " & _ "field generates " & vbCrLf & "the following output " & _ "when run on x86-class computers." & vbCrLf ) Console.WriteLine( "IsLittleEndian: {0}", _ BitConverter.IsLittleEndian ) End Sub End Module ' This example of the BitConverter.IsLittleEndian field generates ' the following output when run on x86-class computers. ' ' IsLittleEndian: True
// Example of the BitConverter.IsLittleEndian field. using System; class LittleEndDemo { public static void Main( ) { Console.WriteLine( "This example of the BitConverter.IsLittleEndian field " + "generates \nthe following output when run on " + "x86-class computers.\n"); Console.WriteLine( "IsLittleEndian: {0}", BitConverter.IsLittleEndian ); } } /* This example of the BitConverter.IsLittleEndian field generates the following output when run on x86-class computers. IsLittleEndian: True */
// Example of the BitConverter::IsLittleEndian field. using namespace System; int main() { Console::WriteLine( "This example of the BitConverter::IsLittleEndian field " "generates \nthe following output when run on " "x86-class computers.\n" ); Console::WriteLine( "IsLittleEndian: {0}", BitConverter::IsLittleEndian ); } /* This example of the BitConverter::IsLittleEndian field generates the following output when run on x86-class computers. IsLittleEndian: True */
// Example of the BitConverter.IsLittleEndian field. import System.*; class LittleEndDemo { public static void main(String[] args) { Console.WriteLine(("This example of the BitConverter.IsLittleEndian " + "field generates \nthe following output when run on " + "x86-class computers.\n")); Console.Write("IsLittleEndian: "); Console.WriteLine(BitConverter.IsLittleEndian); } //main } //LittleEndDemo /* This example of the BitConverter.IsLittleEndian field generates the following output when run on x86-class computers. IsLittleEndian: True */

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からBitConverter.IsLittleEndian フィールドを検索する場合は、下記のリンクをクリックしてください。

- BitConverter.IsLittleEndian フィールドのページへのリンク