IBinaryInteger<TSelf>.WriteBigEndian Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
WriteBigEndian(Byte[]) |
Écrit la valeur actuelle, au format big-endian, dans un tableau donné. |
WriteBigEndian(Span<Byte>) |
Écrit la valeur actuelle, au format big-endian, dans une étendue donnée. |
WriteBigEndian(Byte[], Int32) |
Écrit la valeur actuelle, au format big-endian, dans un tableau donné. |
WriteBigEndian(Byte[])
- Source:
- IBinaryInteger.cs
- Source:
- IBinaryInteger.cs
- Source:
- IBinaryInteger.cs
Écrit la valeur actuelle, au format big-endian, dans un tableau donné.
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
Paramètres
- destination
- Byte[]
Tableau dans lequel la valeur actuelle doit être écrite.
Retours
Nombre d’octets écrits dans destination
.
S’applique à
WriteBigEndian(Span<Byte>)
- Source:
- IBinaryInteger.cs
- Source:
- IBinaryInteger.cs
- Source:
- IBinaryInteger.cs
Écrit la valeur actuelle, au format big-endian, dans une étendue donnée.
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
Paramètres
Retours
Nombre d’octets écrits dans destination
.
S’applique à
WriteBigEndian(Byte[], Int32)
- Source:
- IBinaryInteger.cs
- Source:
- IBinaryInteger.cs
- Source:
- IBinaryInteger.cs
Écrit la valeur actuelle, au format big-endian, dans un tableau donné.
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
Paramètres
- destination
- Byte[]
Tableau dans lequel la valeur actuelle doit être écrite.
- startIndex
- Int32
Index de départ auquel la valeur doit être écrite.
Retours
Nombre d’octets écrits dans à partir de destination
startIndex
.