Reverses the order of the elements in the specified range.
Syntax
| Visual Basic (Declaration) | |
|---|
Overloads Public Sub Reverse( _
ByVal index As Integer, _
ByVal count As Integer _
) |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As ObjectSet(Of T)
Dim index As Integer
Dim count As Integer
instance.Reverse(index, count)
|
| Managed Extensions for C++ | |
|---|
public: void Reverse(
int index,
int count
) |
| C++/CLI | |
|---|
public:
void Reverse(
int index,
int count
) |
Parameters
- index
- The zero-based starting index of the range to reverse.
- count
- The number of elements in the range to reverse.
Requirements
Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family
See Also