paulirwin / JavaToCSharp

Java to C# converter
MIT License
248 stars 85 forks source link

Fix issue with array creation expressions, #38 #74

Closed paulirwin closed 10 months ago

paulirwin commented 10 months ago

Fixes generated C# for array creation expressions. Was (incorrectly) i.e. new float { ... } when it should be new float[] { ... }