
Hi,
As I konw if I don't use OnError methods to handle parser error, the content after the error postion will not be parsed.
But for my scenario, each line of the content interdepend to other lines. Which means if one line has parse error it should not impact other lines, therefore the rest lines should be parsed normally/correctly.
I konw if I handled the errors of a line using OnError methods it will fix the issue, but problem is I can't cover all the error cases.
So is there a solution for my case? Thanks!