UniqueIntegerCollectionParseValues Method
This is used to parse a set of individual numbers or ranges of numbers from a string and store them
in the collection.
Namespace: EWSoftware.PDIAssembly: EWSoftware.PDI (in EWSoftware.PDI.dll) Version: 2023.1.2.0
public void ParseValues(
string values
)
Public Sub ParseValues (
values As String
)
public:
void ParseValues(
String^ values
)
member ParseValues :
values : string -> unit
Parameters
- values String
- The string containing the values to parse and store
Any values that are not valid are discarded
UniqueIntegerCollection ic = new UniqueIntegerCollection();
ic.ParseValues("1, 10, 15-20, 30-35, 100");
Dim ic As New UniqueIntegerCollection()
ic.ParseValues("1, 10, 15-20, 30-35, 100")
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.