tags:

views:

124

answers:

2

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?

A: 

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

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

Bart Kiers
Besides, read more about how ANTLR is used in existing projects, such as NHibernate (for HQL functionality).
Lex Li
+1  A: 

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.

aogan