paul1956 / CSharpToVB

New version of CSharpToVB converter
MIT License
25 stars 9 forks source link

Keywords are unnecessarily escaped #15

Closed jnm2 closed 4 years ago

jnm2 commented 4 years ago

Source line: https://github.com/dotnet/roslyn/blob/c0a1d1ec94efc2b4fcc2334580c84741e10e45ef/src/EditorFeatures/CSharpTest/SimplifyInterpolation/SimplifyInterpolationTests.cs#L44

Expected:

                diagnostics.Select(Function(d) (d.Descriptor.Id, d.Severity)))

Actual:

                diagnostics.[Select](AddressOf Function(d) (d.Descriptor.Id, d.Severity)))
paul1956 commented 4 years ago

Fixed in latest commit. Please provide any other examples.