Husni Jabir
Husni Jabir

Reputation: 605

Parse::RecDescent Module in Perl

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

Answers (1)

yko
yko

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

Related Questions