Summary: Find other ways to use the Windows PowerShell Split method.
How can I use Windows PowerShell to find if there are other ways to use the Split method from a String object?
Use the PSMethod object that returns from the method when not calling it with parenthesis,
and then call the OverLoadDefinitions property, for example:
PS C:\> "string".split.OverloadDefinitions
string[] Split(Params char[] separator)
string[] Split(char[] separator, int count)
string[] Split(char[] separator, System.StringSplitOptions options)
string[] Split(char[] separator, int count, System.StringSplitOptions options)
string[] Split(string[] separator, System.StringSplitOptions options)
string[] Split(string[] separator, int count, System.StringSplitOptions options)