willsam100 / FShaper

FShaper - a tool to make the process of converting C# to F# much easier
MIT License
44 stars 11 forks source link

Convert generic array #5

Closed willsam100 closed 3 years ago

willsam100 commented 5 years ago

Correct this:

C#

 var countSelectColumn = transformedData.GetColumn<float[]>(
                transformedData.Schema[columnName]);

Current output: let mutable countSelectColumn = transformedData.GetColumn<``float[]``>(transformedData.Schema.[columnName])

It should be: let mutable countSelectColumn = transformedData.GetColumn<float32[]>(transformedData.Schema.[columnName])

willsam100 commented 3 years ago

This has been fixed