接口 ICsvParser


public interface ICsvParser
Represents the customized parser.
  • 方法概要

    修饰符和类型
    方法
    说明
    void
    Parse(CsvParseResult csvParseResult, CsvParseContext context)
    Parse text to an object, you could get the parsed result by built-in parser or overwrite it.
  • 方法详细资料

    • Parse

      void Parse(CsvParseResult csvParseResult, CsvParseContext context)
      Parse text to an object, you could get the parsed result by built-in parser or overwrite it.
      参数:
      csvParseResult - The parsed result. If return null, will use the builtin parser to parse the text.
      context - The parsed context of the current cell.