| Split(String, Char, StringSplitOptions) | Splits a String into substrings based on a specified delimiting
character and, optionally, options. |
| Split(String, String, StringSplitOptions) | Splits a String into substrings based on the provided separator,
optionally omitting empty substrings from the result. |
| Split(String, Char, Int32, StringSplitOptions) | Splits a String into a maximum number of substrings based
on the provided character separator, optionally omitting empty substrings from the
result. |
| Split(String, String, Int32, StringSplitOptions) | Splits a String into a maximum number of substrings based
on the provided separator, optionally omitting empty substrings from the result. |