Freigeben über


BitConverter.IsLittleEndian-Feld

Gibt die Bytereihenfolge (Endian-Reihenfolge) an, in der Daten in dieser Computerarchitektur gespeichert werden.

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

Syntax

'Declaration
Public Shared ReadOnly IsLittleEndian As Boolean
'Usage
Dim value As Boolean

value = BitConverter.IsLittleEndian
public static readonly bool IsLittleEndian
public:
static initonly bool IsLittleEndian
public static final boolean IsLittleEndian
public static final var IsLittleEndian : boolean

Hinweise

Der Wert ist true, wenn in der Architektur das Little-Endian-Format verwendet wird, und false, wenn das Big-Endian-Format verwendet wird.

Unterschiedliche Computerarchitekturen speichern Daten in verschiedenen Bytereihenfolgen. "Big-Endian" bedeutet, dass das höchstwertige Byte eines Worts ganz links steht. "Little-Endian" bedeutet, dass das höchstwertige Byte eines Worts ganz rechts steht.

Beispiel

Das folgende Codebeispiel veranschaulicht die Verwendung des IsLittleEndian-Felds.

' 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
*/

Plattformen

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

.NET Compact Framework

Unterstützt in: 2.0, 1.0

Siehe auch

Referenz

BitConverter-Klasse
BitConverter-Member
System-Namespace