ArraySegment<T>.CopyTo 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
CopyTo(ArraySegment<T>) |
이 인스턴스의 내용을 |
CopyTo(T[]) |
이 인스턴스의 내용을 |
CopyTo(T[], Int32) |
지정된 대상 인덱스에서 시작하여 이 인스턴스의 내용을 |
CopyTo(ArraySegment<T>)
- Source:
- ArraySegment.cs
- Source:
- ArraySegment.cs
- Source:
- ArraySegment.cs
이 인스턴스의 내용을 T
같은 형식의 지정된 대상 배열 세그먼트에 복사합니다.
public:
void CopyTo(ArraySegment<T> destination);
public void CopyTo (ArraySegment<T> destination);
member this.CopyTo : ArraySegment<'T> -> unit
Public Sub CopyTo (destination As ArraySegment(Of T))
매개 변수
- destination
- ArraySegment<T>
이 인스턴스의 내용을 복사할 배열 세그먼트입니다.
예외
이 인스턴스의 기본 배열 길이가 기본 배열의 길이보다 크면 destination
.
적용 대상
CopyTo(T[])
- Source:
- ArraySegment.cs
- Source:
- ArraySegment.cs
- Source:
- ArraySegment.cs
이 인스턴스의 내용을 T
같은 형식의 지정된 대상 배열에 복사합니다.
public:
void CopyTo(cli::array <T> ^ destination);
public void CopyTo (T[] destination);
member this.CopyTo : 'T[] -> unit
Public Sub CopyTo (destination As T())
매개 변수
- destination
- T[]
이 인스턴스의 내용을 복사할 T
형식의 배열입니다.
예외
이 인스턴스의 기본 배열은 null
.
적용 대상
CopyTo(T[], Int32)
- Source:
- ArraySegment.cs
- Source:
- ArraySegment.cs
- Source:
- ArraySegment.cs
지정된 대상 인덱스에서 시작하여 이 인스턴스의 내용을 T
같은 형식의 지정된 대상 배열에 복사합니다.
public:
virtual void CopyTo(cli::array <T> ^ destination, int destinationIndex);
public:
void CopyTo(cli::array <T> ^ destination, int destinationIndex);
public void CopyTo (T[] destination, int destinationIndex);
abstract member CopyTo : 'T[] * int -> unit
override this.CopyTo : 'T[] * int -> unit
member this.CopyTo : 'T[] * int -> unit
Public Sub CopyTo (destination As T(), destinationIndex As Integer)
매개 변수
- destination
- T[]
이 인스턴스의 내용을 복사할 T
형식의 배열입니다.
- destinationIndex
- Int32
저장이 시작되는 destination
인덱스입니다.
구현
예외
이 인스턴스의 기본 배열은 null
.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET