What's the simplest and fastest way to draw a parse tree using .Net?
- by mp
I've written a simple top down parser using c#. It's a console application. I'd like the parser could save, at the end of the computation, an image file of the parse tree. I think I could use graphviz, but I'd like to know your opinion.
Thanks.