IBinaryInteger<TSelf>.WriteLittleEndian Metod

Definition

Överlagringar

Name Description
WriteLittleEndian(Span<Byte>)

Skriver det aktuella värdet, i lite endianskt format, till ett givet intervall.

WriteLittleEndian(Byte[])

Skriver det aktuella värdet i lite endianskt format till en viss matris.

WriteLittleEndian(Byte[], Int32)

Skriver det aktuella värdet, i lite endianskt format, till en angiven matris som börjar vid ett angivet index.

WriteLittleEndian(Span<Byte>)

Källa:
IBinaryInteger.cs
Källa:
IBinaryInteger.cs
Källa:
IBinaryInteger.cs
Källa:
IBinaryInteger.cs
Källa:
IBinaryInteger.cs

Skriver det aktuella värdet, i lite endianskt format, till ett givet intervall.

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

Parametrar

destination
Span<Byte>

Det intervall som det aktuella värdet ska skrivas till.

Returer

Antalet byte som skrivits till destination.

Gäller för

WriteLittleEndian(Byte[])

Källa:
IBinaryInteger.cs
Källa:
IBinaryInteger.cs
Källa:
IBinaryInteger.cs
Källa:
IBinaryInteger.cs
Källa:
IBinaryInteger.cs

Skriver det aktuella värdet i lite endianskt format till en viss matris.

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

Parametrar

destination
Byte[]

Matrisen som det aktuella värdet ska skrivas till.

Returer

Antalet byte som skrivits till destination.

Gäller för

WriteLittleEndian(Byte[], Int32)

Källa:
IBinaryInteger.cs
Källa:
IBinaryInteger.cs
Källa:
IBinaryInteger.cs
Källa:
IBinaryInteger.cs
Källa:
IBinaryInteger.cs

Skriver det aktuella värdet, i lite endianskt format, till en angiven matris som börjar vid ett angivet index.

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

Parametrar

destination
Byte[]

Matrisen som det aktuella värdet ska skrivas till.

startIndex
Int32

Det startindex som värdet ska skrivas till.

Returer

Antalet byte som skrivs till destination från och med startIndex.

Gäller för