Just a façade for calling string.Split() We don't use our StringTokenizer because string.Split() is more efficient (but it only works when we don't want to retrieve the delimiters)

Namespace:  NHibernate.Util
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Shared Function Split ( _
	separators As String, _
	list As String _
) As String()
C#
public static string[] Split(
	string separators,
	string list
)
Visual C++
public:
static array<String^>^ Split(
	String^ separators, 
	String^ list
)
JavaScript
NHibernate.Util.StringHelper.split = function(separators, list);

Parameters

separators
Type: System..::.String
separators for the tokens of the list
list
Type: System..::.String
the string that will be broken into tokens

Return Value

See Also