Click or drag to resize
TextUtilsGetSeparatedNames Method
Retrieves a separated and cleaned list of names from a (comma|blank|...)-separated string.

Namespace: PDTec.IceNet.Sdk.Utils
Assembly: PDTec.IceNet.Sdk (in PDTec.IceNet.Sdk.dll) Version: 6.0.0.0 (6.0.6225.27214)
Syntax
C#
public static List<string> GetSeparatedNames(
	string commaSeparatedNames,
	params char[] aSeparators
)

Parameters

commaSeparatedNames
Type: SystemString
A string containing a separated list of names, e.g. "One, Two, Three" or "Create Update Destroy".
aSeparators
Type: SystemChar
One or more separator characters.

Return Value

Type: ListString
The separated and cleaned list of names.
See Also