paul1956 / CSharpToVB

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

Array () missing for converted types #61

Closed paul1956 closed 3 years ago

paul1956 commented 3 years ago
(string[] types, string[] names, string[]? fields) = ExtractProperties(parser); 

is being converted to

Dim TupleTempVar As (String, String, String?) = ExtractProperties(parser)

It should be

Dim TupleTempVar As (String(), String(), String()) = ExtractProperties(parser)
paul1956 commented 3 years ago

Fixed in converter 5.0.0.19