Reader<TInput>.TryReadBytes(Int32, ReadOnlySpan<Byte>) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
尝试从输入读取指定数量的字节。
public bool TryReadBytes (int length, out ReadOnlySpan<byte> bytes);
member this.TryReadBytes : int * ReadOnlySpan -> bool
Public Function TryReadBytes (length As Integer, ByRef bytes As ReadOnlySpan(Of Byte)) As Boolean
参数
- length
- Int32
长度。
- bytes
- ReadOnlySpan<Byte>
读取的字节。
返回
true
如果从输入读取指定数量的字节,则为 ; false
否则为 。