AssemblyCSharp.TSVParser.Split C# (CSharp) Method

Split() protected method

protected Split ( string text ) : string[]
text string
return string[]
        protected string[] Split(string text)
        {
            return text.Split(_separator.ToCharArray());
        }