views:

60

answers:

1
+1  Q: 

JavaCC for .NET?

Hi Guys, I've been spending some time doing JavaCC parser generation for assignments at University and was wondering if there is a similar simple parser generator framework for .NET available?

I know there is ANTLR, but I found it a bit too big for my taste and really started to like the simplicity that JavaCC brings..

greetings Daniel

+2  A: 

Visual Studio SDK ships with MPPG and MPLEX which are based on Gardens Point GPPG and GPLEX.

Found for 2008 in:

Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Tools\Bin

An example language support for Visual Studio can be found in:

Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Samples\IDE\CSharp\Example.ManagedMyC
Simeon Pilgrim
Thanks. I'll look into that.
Tigraine
You could also try Microsoft Oslo SDK which ships with a very simple parsers generator.
SK-logic