I have a very simple DSL I need to parse on a .Net platform. Not being very experienced with parsers, I have been looking at examples using F# (fsLex, fsYacc, FParsec). I am not that familiar with F#, but do have some experience with Workflow and LINQ.
Given the simplicity of the DSL, I can get away with using LINQ to implement the lexer. Workflow (I would be using V4) is appealing to implement the grammar, since I am more familiar with it, it's easier to explain to others given its graphic nature, and it is supported by Microsoft and will continue to evolve, presumably.
If my DSL becomes more sophisticated, however, I can image the WF implementation becoming a nested hell of activities and a LINQ based lexer going the same way. At that point learning F# and using one of the F# tools would make more sense.
I am wondering if others have compared WF and F# parsing tools to implement a simple DSL interpreter and what the conclusions might be.