Useful tools that you would use if you want to create a compiler, a transpiler or you just want to interpret a formal language in C#
#csharp #visualstudio #lex #yacc #DotNet
https://devnotes.ernstc.net/yacclextools
Yacc/Lex Tools, it's time to upgrade to 1.0.0

Yacc/Lex With a very short introduction, Lex and Yacc are useful tools that you would use if you want to create a compiler, a transpiler or you just want to interpret a formal language. YaccLexTools is focused on C#. Other tools are available for o...

Ernesto Cianciotta - Developer Notes
@ernstc How does it compare to#antlr?
@mihamarkic This is a cross-platform tool that simplify the use of YACC and LEX with C#. YACC generates parsers LARL(1) instead of LL(*) parsers generated by ANTLR. YACC is still popular. LALR(1) parsers require generally less memory, less temporal complexity and then, depending on the grammar, can be more performant.