About 10,800,000 results
Open links in new tab
  1. What is the F# language created to accomplish? - Stack Overflow

    Apr 13, 2011 · F# is used for financial and scientific applications in particular. C# was created for Microsoft to have a modern C-like language since they were restricted from extending Java to …

  2. In F# what does the >> operator mean? - Stack Overflow

    Nov 19, 2014 · According to F# Symbol and Operator Reference it is Forward Function Composition operator.

  3. f# - Object initialization syntax - Stack Overflow

    Mar 29, 2016 · In F#, you often want to write the type just using immutable properties. When using the "object initializer" syntax, the properties have to be mutable. An alternative in F# is to use …

  4. .net - C# / F# Performance comparison - Stack Overflow

    Sep 27, 2008 · Is there any C#/F# performance comparison available on web to show proper usage of new F# language?

  5. What are the benefits of using C# vs F# or F# vs C#? [closed]

    Jun 5, 2009 · F# Has Better Performance than C# in Math You could use F# projects in the same solution with C# (and call from one to another) F# is really good for complex algorithmic …

  6. Does F# have the ternary ?: operator? - Stack Overflow

    Feb 17, 2015 · For more examples of C# expressions and statements in F# you can refer to this page. For example: Ternary operator C# has the ternary operator "?:" for conditional …

  7. f# - Could not load file or assembly Microsoft.Bcl.AsyncInterfaces ...

    I can not use the SqlType provider due to an issue with Microsoft.Bcl.AsyncInterfaces. I am using a minimal program with .NET 4.7.2 and F# 4.7.0.0. My Nuget packages contain a reference to: …

  8. f# - How to use sprintf to format an integer with commas as …

    Mar 29, 2016 · How does one use sprintf to format an integer to display commas as thousands separators? I know how to do it using String.Format, but I can't find a way to do it using sprintf. …

  9. Best approach for designing F# libraries for use from both F# and C#

    I am trying to design a library in F#. The library should be friendly for use from both F# and C#. And this is where I'm stuck a little bit. I can make it F# friendly, or I can make it C# friendl...

  10. f# - Create Discriminated Union Case from String - Stack Overflow

    I'm trying to create DU cases from strings. The only way I can see doing this is by enumerating over the DU cases via Microsoft.FSharp.Reflection.FSharpType.GetUnionCases and then …