I want to use a Haskell function with the following type ::
string -> string from a C# program.
I want to use hs-dotnet to bridge both worlds. The au
You can certainly call Haskell from C at least -- you use "foreign export" in the Haskell file, and GHC generates a C header which you can then import and use to call into Haskell from C.
I've not seen this done for the .NET bindings -- so I think it is best to ask both the author - Sigbjorn - and on haskell-cafe@ for examples.