KirillOsenkov / RoslynQuoter

Roslyn tool that for a given C# program shows syntax tree API calls to construct its syntax tree
http://roslynquoter.azurewebsites.net
Apache License 2.0
922 stars 118 forks source link

Support VisualBasic.NET #4

Open robinsedlaczek opened 8 years ago

robinsedlaczek commented 8 years ago

It would be nice if the Roslyn Quoter is able to generate VB.NET code. So generating VB.NET code can be provided in the online tool as well (http://roslynquoter.azurewebsites.net/). Supporting VB.NET would be helpful in many areas when handling and programming with syntax.

KirillOsenkov commented 8 years ago

I'm afraid I won't have time to work on this myself, however I'll consider accepting high quality community contributions that add VB support. I suspect it wouldn't be too hard to make a copy of the C# code and systematically go through all C#-isms and replace them with VB. I suspect that just making the same code work for both will be significantly more complicated than copy-pasting and tweaking.