CollectionExtensions.CopyTo<T>(List<T>, Span<T>) メソッド

定義

全体 List<T> をスパンにコピーします。

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))

型パラメーター

T

リスト内の要素の型です。

パラメーター

list
List<T>

要素のコピー元となるリスト。

destination
Span<T>

から listコピーされた要素のコピー先であるスパン。

例外

listnull です。

ソース List<T> 内の要素の数が、変換先スパンに含めることができる要素の数を超えています。

適用対象