System.Runtime.CompilerServices.ReadOnlyCollectionBuilder.Reverse C# (CSharp) Method

Reverse() public method

Reverses the order of the elements in the entire ReadOnlyCollectionBuilder{T}.
public Reverse ( ) : void
return void
        public void Reverse()
        {
            Reverse(0, Count);
        }

Same methods

ReadOnlyCollectionBuilder::Reverse ( int index, int count ) : void