Encog.Util.CSV.ReadCSV.Parse C# (CSharp) Method

Parse() private method

private Parse ( string line ) : IList
line string
return IList
        private IList<String> Parse(string line)
        {
            if (Format.Separator == ' ')
            {
                return ParseSpaceSep(line);
            }
            else
            {
                return ParseCharSep(line);
            }
        }