Roslyn: Convert C# to VB
问题 I have the case wherein I need to convert a C#- to a VB.NET project. (I want to automate this, so I cannot use an online tool or something similar) There is a "Paste as C#/VB" sample visual studio extension which seemed to be able to do this. I tried converting this class: namespace TestApplication { class Class1 { /// <summary> /// Lorem /// </summary> public void Lorem() { } } } But it ended up with this: Namespace TestApplication Class Class1 ''' <summary> Lorem </summary> Public Sub Lorem