ImmutableList<T>.Reverse 메서드

정의

오버로드

Reverse()

전체 변경할 수 없는 목록에서 요소의 순서를 반대로 바꿉니다.

Reverse(Int32, Int32)

변경할 수 없는 목록의 지정된 범위에서 요소의 순서를 반대로 바꿉니다.

Reverse()

Source:
ImmutableList_1.cs
Source:
ImmutableList_1.cs
Source:
ImmutableList_1.cs

전체 변경할 수 없는 목록에서 요소의 순서를 반대로 바꿉니다.

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)

반환

역순 목록입니다.

적용 대상

Reverse(Int32, Int32)

Source:
ImmutableList_1.cs
Source:
ImmutableList_1.cs
Source:
ImmutableList_1.cs

변경할 수 없는 목록의 지정된 범위에서 요소의 순서를 반대로 바꿉니다.

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

순서를 반대로 바꿀 범위의 요소 수입니다.

반환

역순 목록입니다.

적용 대상