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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.