[]
Initializes a new instance of the ItemRange.
public ItemRange()
Initializes a new instance of the ItemRange.
public ItemRange(ItemRange prototype)
Type | Name | Description |
---|---|---|
ItemRange | prototype | Prototype |
Initializes a new instance of the ItemRange.
public ItemRange(int first, int last)
Type | Name | Description |
---|---|---|
int | first | Fist item index. |
int | last | Last item index. |
Initializes a new instance of the ItemRange.
public ItemRange(string range)
Type | Name | Description |
---|---|---|
string | range | Range as a string. |
The string format should be: "{0}:{1}", where {0} is the FirstItem and {1} is the LastItem.
ItemRange range = new ItemRange("1:100");