user299135
user299135

Reputation:

ANTLR and c# - where to start?

I want to integrate ANTLR with my c# desktop application.
I could not find many articles that talk about integration of ANTLR wirh C#.
Can you recommend a book that explains it step by step through real world examples?

Upvotes: 2

Views: 899

Answers (2)

aogan
aogan

Reputation: 2271

I'm currently writing a toy language using ANTLR with C# and DLR to run on .NET. I found the Language Implementation Pattern [1] very useful.

Upvotes: 1

Bart Kiers
Bart Kiers

Reputation: 170138

The ANTLR Wiki has an entry about C# integration/usage:

http://www.antlr.org/wiki/display/ANTLR3/Antlr+3+CSharp+Target

Upvotes: 0

Related Questions