[]
        
(Showing Draft Content)

ICsvParser

Interface ICsvParser


public interface ICsvParser
Represents the customized parser.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Parse(CsvParseResult csvParseResult, CsvParseContext context)
    Parse text to an object, you could get the parsed result by built-in parser or overwrite it.
  • Method Details

    • 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.
      Parameters:
      csvParseResult - The parsed result. If return null, will use the builtin parser to parse the text.
      context - The parsed context of the current cell.