ImmutableList<T>.Reverse 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
| Name | Description |
|---|---|
| Reverse(Int32, Int32) |
변경할 수 없는 목록의 지정된 범위에서 요소의 순서를 반대로 바뀝니다. |
| Reverse() |
변경할 수 없는 전체 목록의 요소 순서를 반대로 바꿉니다. |
Reverse(Int32, Int32)
변경할 수 없는 목록의 지정된 범위에서 요소의 순서를 반대로 바뀝니다.
public:
System::Collections::Immutable::ImmutableList<T> ^ Reverse(int index, int count);
public System.Collections.Immutable.ImmutableList<T> Reverse(int index, int count);
member this.Reverse : int * int -> System.Collections.Immutable.ImmutableList<'T>
Public Function Reverse (index As Integer, count As Integer) As ImmutableList(Of T)
매개 변수
- index
- Int32
역방향으로 지정할 범위의 시작 인덱스(0부터 시작)입니다.
- count
- Int32
역방향으로 지정할 범위의 요소 수입니다.
반품
역방향 목록입니다.
적용 대상
Reverse()
변경할 수 없는 전체 목록의 요소 순서를 반대로 바꿉니다.
public:
System::Collections::Immutable::ImmutableList<T> ^ Reverse();
public System.Collections.Immutable.ImmutableList<T> Reverse();
member this.Reverse : unit -> System.Collections.Immutable.ImmutableList<'T>
Public Function Reverse () As ImmutableList(Of T)
반품
역방향 목록입니다.