IBinaryInteger<TSelf>.WriteBigEndian Metoda

Definice

Přetížení

WriteBigEndian(Byte[])

Zapíše aktuální hodnotu do daného pole ve formátu big-endian.

WriteBigEndian(Span<Byte>)

Zapíše aktuální hodnotu ve formátu big-endian do daného rozsahu.

WriteBigEndian(Byte[], Int32)

Zapíše aktuální hodnotu do daného pole ve formátu big-endian.

WriteBigEndian(Byte[])

Zdroj:
IBinaryInteger.cs
Zdroj:
IBinaryInteger.cs
Zdroj:
IBinaryInteger.cs

Zapíše aktuální hodnotu do daného pole ve formátu big-endian.

public:
 virtual int WriteBigEndian(cli::array <System::Byte> ^ destination);
public virtual int WriteBigEndian (byte[] destination);
abstract member WriteBigEndian : byte[] -> int
override this.WriteBigEndian : byte[] -> int
Public Overridable Function WriteBigEndian (destination As Byte()) As Integer

Parametry

destination
Byte[]

Pole, do kterého má být aktuální hodnota zapsána.

Návraty

Počet bajtů zapsaných do destination.

Platí pro

WriteBigEndian(Span<Byte>)

Zdroj:
IBinaryInteger.cs
Zdroj:
IBinaryInteger.cs
Zdroj:
IBinaryInteger.cs

Zapíše aktuální hodnotu ve formátu big-endian do daného rozsahu.

public:
 virtual int WriteBigEndian(Span<System::Byte> destination);
public virtual int WriteBigEndian (Span<byte> destination);
abstract member WriteBigEndian : Span<byte> -> int
override this.WriteBigEndian : Span<byte> -> int
Public Overridable Function WriteBigEndian (destination As Span(Of Byte)) As Integer

Parametry

destination
Span<Byte>

Rozsah, do kterého má být aktuální hodnota zapsána.

Návraty

Počet bajtů zapsaných do destination.

Platí pro

WriteBigEndian(Byte[], Int32)

Zdroj:
IBinaryInteger.cs
Zdroj:
IBinaryInteger.cs
Zdroj:
IBinaryInteger.cs

Zapíše aktuální hodnotu do daného pole ve formátu big-endian.

public:
 virtual int WriteBigEndian(cli::array <System::Byte> ^ destination, int startIndex);
public virtual int WriteBigEndian (byte[] destination, int startIndex);
abstract member WriteBigEndian : byte[] * int -> int
override this.WriteBigEndian : byte[] * int -> int
Public Overridable Function WriteBigEndian (destination As Byte(), startIndex As Integer) As Integer

Parametry

destination
Byte[]

Pole, do kterého má být aktuální hodnota zapsána.

startIndex
Int32

Počáteční index, pro který má být hodnota zapsána.

Návraty

Počet bajtů zapsaných do destination začínající na startIndex.

Platí pro