FrozenDictionary<TKey,TValue>.CopyTo 메서드

정의

오버로드

CopyTo(Span<KeyValuePair<TKey,TValue>>)

사전의 요소를 형식 KeyValuePair<TKey,TValue>의 범위에 복사합니다.

CopyTo(KeyValuePair<TKey,TValue>[], Int32)

지정된 에서 시작하여 사전의 요소를 형식 KeyValuePair<TKey,TValue>의 배열에 destinationIndex복사합니다.

CopyTo(Span<KeyValuePair<TKey,TValue>>)

Source:
FrozenDictionary.cs
Source:
FrozenDictionary.cs

사전의 요소를 형식 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)

Source:
FrozenDictionary.cs
Source:
FrozenDictionary.cs

지정된 에서 시작하여 사전의 요소를 형식 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부터 시작하는 인덱스입니다.

구현

적용 대상