CollectionExtensions.CopyTo<T>(List<T>, Span<T>) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Copies the entire List<T> to a span.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static void CopyTo(System::Collections::Generic::List<T> ^ list, Span<T> destination);
public static void CopyTo<T> (this System.Collections.Generic.List<T> list, Span<T> destination);
static member CopyTo : System.Collections.Generic.List<'T> * Span<'T> -> unit
<Extension()>
Public Sub CopyTo(Of T) (list As List(Of T), destination As Span(Of T))
Type Parameters
- T
The type of elements in the list.
Parameters
- list
- List<T>
The list from which the elements are copied.
- destination
- Span<T>
The span that is the destination of the elements copied from list
.
Exceptions
The list
is null
.
The number of elements in the source List<T> is greater than the number of elements that the destination span can contain.
Applies to
Vertu í samstarfi við okkur á GitHub
Heimildina fyrir þetta efni er að finna á GitHub, þar sem þú getur líka búið til og farið yfir vandamál og sameinað beiðnir. Frekari upplýsingar er að finna í framlagshandbók okkar.