LibCSV.CSVReader.ProcessEscapeInQuotedField C# (CSharp) 메소드

ProcessEscapeInQuotedField() 보호된 메소드

protected ProcessEscapeInQuotedField ( char currentCharacter ) : void
currentCharacter char
리턴 void
        protected void ProcessEscapeInQuotedField(char currentCharacter)
        {
            if (IsNull(currentCharacter) || currentCharacter == 'n')
                currentCharacter = '\n';

            if (currentCharacter == 'r')
                currentCharacter = '\r';

            if (currentCharacter == 't')
                currentCharacter = '\t';

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