I have mono and f# installed and running under linux but wanted to move the directory of the f# installation. The problem is that, when run with mono, the f# compiler still refers to the old directory
Is there a difference between writing something like this: 开发者_JAVA百科 MailboxProcessor.Start(fun inbox -> async {
I have a recursive function emit : Map<string,LocalBuilder> -> exp -> unit where il : ILGenerator is global 开发者_开发技巧to the function and exp is a discriminant union representing a ty
I have a windows phone 7 app with some xaml that looks like: <Grid x:Name=\"ContentGrid\" Grid.Row=\"1\">
开发者_JAVA百科I want a serializable continuation so I can pickle async workflows to disk while waiting for new events. When the async workflow is waiting on a let!, it would be saved away along with
I want to scrape a page for all the urls and put them in the dictionary. I created an class with an dictionary. But I can\'t seem to add elements into it.
Why does it seem like the order of the arguments matters for F#?开发者_如何学C It doesn\'t matter for C# (which uses the same compilation model). When I try this:
How would I create an instance of Action<\'T> using reflection? Here\'s what I have: let makeAction (typ:Type) (f:\'T -> unit) =
F# has a convenient feature \"with\", example: type Product = { Name:string; Price:int };; let p = { Name=\"Test\"; Price=42; };;
I created a F# library that returns this datatype FSharpAsync<IEnumerable<Tupel<DateTime,string>>>