Mono.Csv.CsvFileReader.ReadUnquotedColumn C# (CSharp) Метод

ReadUnquotedColumn() приватный Метод

Reads an unquoted column by reading from the current line until a delimiter is found or the end of the line is reached. On return, the current position points to the delimiter or the end of the current line.
private ReadUnquotedColumn ( ) : string
Результат string
        private string ReadUnquotedColumn()
        {
            int startPos = CurrPos;
            CurrPos = CurrLine.IndexOf (Delimiter, CurrPos);
            if (CurrPos == -1)
                CurrPos = CurrLine.Length;
            if (CurrPos > startPos)
                return CurrLine.Substring (startPos, CurrPos - startPos);
            return String.Empty;
        }