[]
Initializes a new instance of the FieldRange.
public FieldRange()
Initializes a new instance of the FieldRange.
public FieldRange(FieldRange prototype)
Type | Name | Description |
---|---|---|
FieldRange | prototype | Prototype |
Initializes a new instance of the FieldRange.
public FieldRange(params string[] fields)
Type | Name | Description |
---|---|---|
string[] | fields | Array of the fields name. |
Initializes a new instance of the FieldRange.
public FieldRange(IEnumerable<string> fields)
Type | Name | Description |
---|---|---|
IEnumerable<string> | fields | Fields name collection. |
Initializes a new instance of the FieldRange.
public FieldRange(string range)
Type | Name | Description |
---|---|---|
string | range | Range as a string. |
The string format should be: "[{0}],[{1}]...", where {0},{1}... is the field names.
FieldRange range = new FieldRange("[Field1],[Field2],[Field3]");