LibCSV.CSVReader.ProcessEscapedChar C# (CSharp) Method

ProcessEscapedChar() protected method

protected ProcessEscapedChar ( char currentCharacter ) : void
currentCharacter char
return void
        protected void ProcessEscapedChar(char currentCharacter)
        {
            if (IsNull(currentCharacter))
                currentCharacter = '\n';

            AddChar(currentCharacter);
            _state = ParserState.InField;
        }