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.UtilAssembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)
Syntax
C# |
---|
public static string[] Split( string separators, string list ) |
Visual Basic |
---|
Public Shared Function Split ( _ separators As String, _ list As String _ ) As String() |
Visual C++ |
---|
public: static array<String^>^ Split( String^ separators, String^ 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
[Missing <returns> documentation for "M:NHibernate.Util.StringHelper.Split(System.String,System.String)"]