willsam100 / FShaper

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

parse constant strings #6

Closed willsam100 closed 3 years ago

willsam100 commented 5 years ago

C#: Console.Write($"{row[i]}\t");

current (incorrect( F# output: Console.Write(sprintf @"%O\t" (row.[i]))

the F# @ means that tabs are not printed out. I believe the correct output should be: Console.Write(sprintf "%O\t" (row.[i]))

willsam100 commented 3 years ago

This has been fixed