FrozenDictionary<TKey,TValue>.CopyTo メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
CopyTo(Span<KeyValuePair<TKey,TValue>>) |
ディクショナリの要素を 型のスパンにコピーします KeyValuePair<TKey,TValue>。 |
CopyTo(KeyValuePair<TKey,TValue>[], Int32) |
指定した から始まる 型 KeyValuePair<TKey,TValue>の配列にディクショナリの要素をコピーします |
CopyTo(Span<KeyValuePair<TKey,TValue>>)
ディクショナリの要素を 型のスパンにコピーします KeyValuePair<TKey,TValue>。
public:
void CopyTo(Span<System::Collections::Generic::KeyValuePair<TKey, TValue>> destination);
public void CopyTo (Span<System.Collections.Generic.KeyValuePair<TKey,TValue>> destination);
member this.CopyTo : Span<System.Collections.Generic.KeyValuePair<'Key, 'Value>> -> unit
Public Sub CopyTo (destination As Span(Of KeyValuePair(Of TKey, TValue)))
パラメーター
- destination
- Span<KeyValuePair<TKey,TValue>>
ディクショナリからコピーされた要素のコピー先であるスパン。
適用対象
CopyTo(KeyValuePair<TKey,TValue>[], Int32)
指定した から始まる 型 KeyValuePair<TKey,TValue>の配列にディクショナリの要素をコピーします destinationIndex
。
public:
virtual void CopyTo(cli::array <System::Collections::Generic::KeyValuePair<TKey, TValue>> ^ destination, int destinationIndex);
public void CopyTo (System.Collections.Generic.KeyValuePair<TKey,TValue>[] destination, int destinationIndex);
abstract member CopyTo : System.Collections.Generic.KeyValuePair<'Key, 'Value>[] * int -> unit
override this.CopyTo : System.Collections.Generic.KeyValuePair<'Key, 'Value>[] * int -> unit
Public Sub CopyTo (destination As KeyValuePair(Of TKey, TValue)(), destinationIndex As Integer)
パラメーター
- destination
- KeyValuePair<TKey,TValue>[]
ディクショナリからコピーされた要素のコピー先となる配列。
- destinationIndex
- Int32
コピーの開始位置とする destination
のインデックス (0 から始まる)。
実装
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET