Reputation: 605
I found that Parse::RecDescent is a Perl module to implement natural language parser. Is there any way to implement Parse::RecDescent in C# language also?
Upvotes: 1
Views: 367
Reputation: 2710
Instead of implementing P::RD
in C# maybe it's better to embed perl interpreter into your C# application? How can I embed a Perl interpreter in my C# program using Mono on Linux? might help a bit.
Upvotes: 2