接口 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
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.
-