ReadOnlyCollectionBuilder<T>.Reverse Method

Definition

Overloads

Reverse(Int32, Int32)

Reverses the order of the elements in the specified range.

Reverse()

Reverses the order of the elements in the entire ReadOnlyCollectionBuilder<T>.

Reverse(Int32, Int32)

Source:
ReadOnlyCollectionBuilder.cs
Source:
ReadOnlyCollectionBuilder.cs
Source:
ReadOnlyCollectionBuilder.cs

Reverses the order of the elements in the specified range.

public:
 void Reverse(int index, int count);
public void Reverse (int index, int count);
member this.Reverse : int * int -> unit
Public Sub Reverse (index As Integer, count As Integer)

Parameters

index
Int32

The zero-based starting index of the range to reverse.

count
Int32

The number of elements in the range to reverse.

Applies to

Reverse()

Source:
ReadOnlyCollectionBuilder.cs
Source:
ReadOnlyCollectionBuilder.cs
Source:
ReadOnlyCollectionBuilder.cs

Reverses the order of the elements in the entire ReadOnlyCollectionBuilder<T>.

public:
 void Reverse();
public void Reverse ();
member this.Reverse : unit -> unit
Public Sub Reverse ()

Applies to