csharp split on multiple characters

Code Example - csharp split on multiple characters

                
                        string tests = "abc][rfd][5][,][.";
string[] reslts = tests.Split(new char[] { ']', '[' }, StringSplitOptions.RemoveEmptyEntries);