Closed paul1956 closed 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)
Fixed in converter 5.0.0.19
is being converted to
It should be