Categorizer Delegate

Encapsulates a method that assigns a category label to a numerical value having the specified string representation in a specific culture.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public delegate string Categorizer(
	string token,
	IFormatProvider provider
)

Parameters

token  String
The string representing a value to be categorized.
provider  IFormatProvider
An object that provides formatting information to parse numeric values.

Return Value

String
The category label assigned to the value.

Remarks

Objects of type Categorizer can be used to define how a CategoricalDataSet should be encoded when reading numerical data from a stream of characters.

See Also