Fan.Sys.Regex.split C# (CSharp) Method

split() public method

public split ( string s ) : List
s string
return List
        public List split(string s)
        {
            return split(s, 0);
        }

Same methods

Regex::split ( string s, long limit ) : List