FShaper
FShaper copied to clipboard
FShaper - a tool to make the process of converting C# to F# much easier
i think the F# community should give better visibility/financing to this project and the other cs2fs project! and maybe unify the 2 in a single dotnet global tool for all...
C# has native support for async/await, F# has async computation expressions. It should be possible to get close: - `async` in method -> `async { ... }` - `await` ->...
F# does not support protected methods. A simple solution is to covert each a protected method to private. Is this good enough?
C# is not specific about which methods belong to each interface. F# requires that specification. FSharper currently, does not make any assumptions about the methods to add to an interface....
Hi, I am having a problem when strings contain `\n` to create a new line in output. It is easy to reproduce using a test. Input ```cs void Foo() {...