Overload List

  NameDescription
Split(String, String)
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)
Split(String, String, Boolean)
Splits the String using the StringTokenizer.

See Also