Get an array of indexes. This can be used when passing indexes
to methods that apply operations
| C# | Visual Basic | Visual C++ |
public int[] GetIndexes( int Beginning, int End )
Public Function GetIndexes ( _ Beginning As Integer, _ End As Integer _ ) As Integer()
public: virtual array<int>^ GetIndexes( int Beginning, int End ) sealed
- Beginning (Int32)
- Starting index
- End (Int32)
- End Index
The indexes requested
Each register has its own indexes, so registers obtained
through slicing will have their own indexes and start at 0.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | Thrown if either
parameter is outside the bounds of the register. |