Is there a good yacc/bison type LALR parser generator for .NET ?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

Antlr supports C# code generation, though it is LL(k) not technically LALR. Its tree rewriting rules are an interesting feature though.

link|improve this answer
feedback

SableCC can generate c# code. It's pretty good but you need a few days to figure out how it all works, because the documentation ist not that great

link|improve this answer
feedback

The Gardens Point Parser Generator looks good, however I've not had a chance to try it myself.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.