Reputation:
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
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
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