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