SequenceMarshal.TryGetReadOnlyMemory<T>(ReadOnlySequence<T>, ReadOnlyMemory<T>) 方法
定义
尝试检索指定的只读序列中的只读内存。Attempts to retrieve a read-only memory from the specified read-only sequence.
public:
generic <typename T>
static bool TryGetReadOnlyMemory(System::Buffers::ReadOnlySequence<T> sequence, [Runtime::InteropServices::Out] ReadOnlyMemory<T> % memory);
public static bool TryGetReadOnlyMemory<T> (System.Buffers.ReadOnlySequence<T> sequence, out ReadOnlyMemory<T> memory);
static member TryGetReadOnlyMemory : System.Buffers.ReadOnlySequence<'T> * ReadOnlyMemory -> bool
Public Shared Function TryGetReadOnlyMemory(Of T) (sequence As ReadOnlySequence(Of T), ByRef memory As ReadOnlyMemory(Of T)) As Boolean
类型参数
- T
只读序列的类型。The type of the read-only sequence.
参数
- sequence
- ReadOnlySequence<T>
要从中检索内存的只读序列。The read-only sequence from which the memory will be retrieved.
- memory
- ReadOnlyMemory<T>
返回的类型为 T 的只读内存。The returned read-only memory of type T.
返回
如果可以检索只读内存,则为 true;否则为 false。true if the read-only memory can be retrieved; otherwise, false.