ReadOnlyCollectionBuilder<T>.Reverse Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.