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.

Definition

Namespace: EWSoftware.PDI
Assembly: EWSoftware.PDI (in EWSoftware.PDI.dll) Version: 2023.1.2.0
public void ParseValues(
	string values
)

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");

See Also