Click or drag to resize

AsciiImporterToArraysFindUniqueColumnNameWithBase Method

Get a unique column name based on a provided string. If a column with the name of the provided string already exists, a new name is created by appending a dot and then A-ZZ.

Namespace: Altaxo.Serialization.Ascii
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
protected string FindUniqueColumnNameWithBase(
	string sbase,
	HashSet<string> columnNames
)

Parameters

sbase  String
A string which is the base of the new name. Must not be null!
columnNames  HashSetString
The set of existing column names.

Return Value

String
An unique column name based on the provided string.
See Also