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>>)
- 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부터 시작하는 인덱스입니다.
구현
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET