[]
Swaps one or more rows or columns.
public virtual void Swap(int fromIndex, int toIndex, int count)
Public Overridable Sub Swap(fromIndex As Integer, toIndex As Integer, count As Integer)
| Type | Name | Description |
|---|---|---|
| int | fromIndex | Row or column index at which to start swapping rows or columns |
| int | toIndex | Row or column index at which to swap rows or columns |
| int | count | Number of rows or columns to swap |
| Type | Condition |
|---|---|
| IndexOutOfRangeException | Specified start index is not valid; must be between 0 and the total count |
| IndexOutOfRangeException | Specified destination index is not valid; must be between 0 and the total count |
| ArgumentException | Specified count is not valid; must be between 1 and the total count |