I have a solution in Xamarin Studio with a C # console program that is trying to call the F # library.
The link is beautiful, everything builds.
My F # code is as follows:
namespace MyStore.Library module public Lookup = open System let lookup name (age:int) = String.Format("{0}, {1}", name, age.ToString() );
I can call the F # library from the F # console and the C # library from the C # console, but I cannot mix them.
The C # console does not see the F # namespace at all.
What am I doing wrong?
What should I do to see the F # namespace from C #?
Aidan source share