Search code examples
c#artificial-intelligencenlp

Implementing a Top Down Parser in C#


I am student and I want to implement a top-down parser in my C# language translation project. For example, if I need to construct a parser tree for the sentence "My name is Husni and I am a student", how can I do it with C#?


Solution

  • After the book you can also find interesting to read about a compiler generator as ANTLR that can help you to write the compiler ( also in C# ) and browsing the AST even visually.