Reverses the order of the elements in the ArrayList, or a portion of it.
Reverses the order of the elements in the entire ArrayList.
[Visual Basic] Overloads Overridable Public Sub Reverse()
[C#] public virtual void Reverse();
[C++] public: virtual void Reverse();
[JScript] public function Reverse();
Reverses the order of the elements in the specified range.
[Visual Basic] Overloads Overridable Public Sub Reverse(Integer, Integer)
[C#] public virtual void Reverse(int, int);
[C++] public: virtual void Reverse(int, int);
[JScript] public function Reverse(int, int);
ArrayList Class | ArrayList Members | System.Collections Namespace