IBinaryInteger<TSelf>.WriteBigEndian Metod
Definition
Viktigt
En del information gäller för förhandsversionen av en produkt och kan komma att ändras avsevärt innan produkten blir allmänt tillgänglig. Microsoft lämnar inga garantier, uttryckliga eller underförstådda, avseende informationen som visas här.
Överlagringar
| Name | Description |
|---|---|
| WriteBigEndian(Byte[]) |
Skriver det aktuella värdet, i stor endianskt format, till en viss matris. |
| WriteBigEndian(Span<Byte>) |
Skriver det aktuella värdet, i stor endianskt format, till ett visst spann. |
| WriteBigEndian(Byte[], Int32) |
Skriver det aktuella värdet, i stor endianskt format, till en viss matris. |
WriteBigEndian(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 stor endianskt format, till en viss matris.
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
Parametrar
- destination
- Byte[]
Matrisen som det aktuella värdet ska skrivas till.
Returer
Antalet byte som skrivits till destination.
Gäller för
WriteBigEndian(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 stor endianskt format, till ett visst spann.
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
Parametrar
Returer
Antalet byte som skrivits till destination.
Gäller för
WriteBigEndian(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 stor endianskt format, till en viss matris.
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
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.