Click or drag to resize

ConversionsSplitToListT Method (String, IFormatProvider, Char)

Splits a text into a list of values.

Namespace:  callback.ShellBoost.Core.Utilities
Assembly:  callback.CBFSShell (in callback.CBFSShell.dll) Version: 22.0.0.0
Syntax
C#
public static List<T> SplitToList<T>(
	string text,
	IFormatProvider provider,
	params char[] separators
)

Parameters

text
Type: SystemString
The input text.
provider
Type: SystemIFormatProvider
The format provider.
separators
Type: SystemChar
The list of separators.

Type Parameters

T
The expected type.

Return Value

Type: ListT
A list of typed values.
See Also