Implementing a Top Down Parser in C#
问题 i am Student and i want to implement a top down parser in my language translation project that is developed using c# language. 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 in C# language. 回答1: 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. 回答2: I highly recommend this book: Basics of