Modifica

Condividi tramite


SpanExtensions.TryCopyTo<T> Method

Definition

Attempts to copy the contents of a given Span<T> into destination RefEnumerable<T> instance.

public static bool TryCopyTo<T> (this Span<T> span, Microsoft.Toolkit.HighPerformance.Enumerables.RefEnumerable<T> destination);
static member TryCopyTo : Span<'T> * Microsoft.Toolkit.HighPerformance.Enumerables.RefEnumerable<'T> -> bool
<Extension()>
Public Function TryCopyTo(Of T) (span As Span(Of T), destination As RefEnumerable(Of T)) As Boolean

Type Parameters

T

The type of items in the input Span<T> instance.

Parameters

span
Span<T>

The input Span<T> instance.

destination
RefEnumerable<T>

The RefEnumerable<T> instance to copy items into.

Returns

Whether or not the operation was successful.

Applies to