共用方式為


ReaderInput.ReadBytes 方法

定義

多載

ReadBytes(Span<Byte>)

使用輸入中的資料填入目的地範圍。

ReadBytes(Byte[], Int32, Int32)

從輸入讀取位元組到目的地陣列。

ReadBytes(Span<Byte>)

使用輸入中的資料填入目的地範圍。

public abstract void ReadBytes (Span<byte> destination);
abstract member ReadBytes : Span<byte> -> unit
Public MustOverride Sub ReadBytes (destination As Span(Of Byte))

參數

destination
Span<Byte>

目的地。

適用於

ReadBytes(Byte[], Int32, Int32)

從輸入讀取位元組到目的地陣列。

public abstract void ReadBytes (byte[] destination, int offset, int length);
abstract member ReadBytes : byte[] * int * int -> unit
Public MustOverride Sub ReadBytes (destination As Byte(), offset As Integer, length As Integer)

參數

destination
Byte[]

目的陣列。

offset
Int32

要開始寫入位元組之目的地的位移。

length
Int32

要複製到目的地的位元組數目。

適用於