Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I recently heard about F#.

I wonder why the .NET world needs another programming language?

What's the deal?

Is there a problem that C# cant solve and F# can?

Is F# a dynamic language?
[Update :Be careful not to confuse type inference with dynamic typing.
Although F# allows you to omit types when writing code,
that doesn’t mean that type checking is not enforced at compile time.]

Is there any possibility that F# will be more popular than C# or is it just for specific problems?

share|improve this question
20  
Did you try to type in "F#" in Google? – Mathias Jan 31 '10 at 6:30
9  
I asked this question here if anyone have the same question and searches on google find a bunch of information from experts which working with the language here. – ali62b Jan 31 '10 at 6:36
3  
Just try it. You'll see. – Ray Jan 31 '10 at 9:21
9  
7  
Strange that this should be reopened. Has there ever been a more clear-cut duplicate? – harms Feb 1 '10 at 16:18
show 6 more comments

closed as not constructive by Craigy, Kemal Fadillah, Bo Persson, raven, Matthew Sep 2 '12 at 19:10

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

7 Answers

up vote 147 down vote accepted

Is there a problem that C# can't solve and F# can?

No.

Is F# a dynamic language?

No.

I thought F# is a dynamic language ! So what kind of language is F#?

F# is a functional language similar to OCAML. It is statically typed, not dynamically typed. It supports compile-time type inference.

Is there any possibility that F# be more popular than C#?

Yes.

Why may F# be more popular than C#?

F# is an excellent language. People might like it better than C#.

Yes but I am looking for the reasons.

F# is a functional language that supports object-oriented programming. C# is an object-oriented language that supports functional programming. People in the future might prefer functional programming to object-oriented programming. Tastes change; there is an increasing interest in the industry for using techniques from functional programming.

I want to know more about F#.

Then look here:

http://fsharp.org/

and read this:

http://research.microsoft.com/en-us/um/cambridge/projects/fsharp/

and this:

http://en.wikipedia.org/wiki/F_Sharp_(programming_language)

and this:

http://msdn.microsoft.com/en-us/fsharp/default.aspx

and this:

http://msdn.microsoft.com/en-us/library/dd233154(VS.100).aspx

and this:

http://blogs.msdn.com/dsyme/

share|improve this answer
6  
I like the last answer, given Eric's involvement with C# ! – Mitch Wheat Jan 31 '10 at 6:06
45  
This is a great answer to a pretty insipid question. – Onorio Catenacci Jan 31 '10 at 18:31
10  
"People might like it better than C#." made me laugh! – Mehrdad Afshari Jan 31 '10 at 23:15
4  
I wouldn't really call F# "object oriented". Sure, it can consume and define objects/classes but have you ever tried writing more complex systems in F#? Having to put all mutually dependant classes in one file is a just mess. And no, you can't forward-declare functions/classes or share header files. Writing OO-Code in F# is like writing functional code in C#: Not very pretty. – Christian Klauser Feb 1 '10 at 9:43
19  
I wouldn't call F# object-oriented either. – Eric Lippert Feb 1 '10 at 17:20
show 4 more comments

Eric's answer is a good one, but I wanted to touch on this point:

"Is there a problem that C# cant solve and F# can ?"

Yes, but not technical problems per se. One problem that F# solves that each iteration of C# only scratches on is the problem of high ceremony, high verbosity and general lower readability. Recent versions of C# touch on this problem by introducing more type inference into the C# language (ex: the var keyword), but being a C dialect, it can never solve it completely.

You'll find that if you just try it, you can express simple ideas more simply, more concisely, than you can with C# and OOP.

share|improve this answer

Is there a problem that C# can't solve and F# can?

The problem to solve functional problems concisely.

share|improve this answer

F# is a functional language. It encourages a programming style of more functions and side effect free functions. This may be an advantage when you need to utilize a many-core processor.

I think you can program anything in both C# and F# but they have different "styles". (C# got a big dose of the "functional mindset" with LINQ)

share|improve this answer

One tool doesn't fit all needs.

Did Asp.Net MVC replace Asp.Net Forms? No, both are used according to the project needs.

Did Vb.Net replace C#? No, both provide almost same functionality and options but pull developers from both families. Vb and C.

Has WPF replaced, WinForms? not yet, might in future.

Chris Smith's on his Blog, says

But just because you can write code in a new language doesn't mean you should. So why use F#? Because being a functional language, F# makes writing some classes of programs much easier than its imperative cousins like C#. Parallel Programming and Language-Oriented Programming are two such domains that can be expressed easily in F#.

If you’ve ever written a .NET application and found yourself fighting against the language to get your idea expressed, then perhaps F# is what you’ve been looking for."

Want to learn more, check this?

share|improve this answer

Performance compare: C# / F# Performance comparison

refactoring in parallel and generics : http://tryingthisagain.com/2008/04/16/c-vs-f-some-parallel-refactoring-and-generalization/

f# will get a huge push from MS, but C# will maintain it's user base I believe.

share|improve this answer

F# basically uses a different paradigm. I'm sure, that when you started programming you had functions all over the place, and thought "Wait? A class? Now what would I need that for?" - Well, at least I did :) I think this is the normal human way of thinking. Over the years though, I've learned to think in the OO-way instead, and now see "Yikes, a global function? What were they thinking?". It's basically different ways to look at a problem.

Now, this holds true for all functional languages, but as a sidenote, I'd like to add that F# is probably the most experimental of all the CLR languages that Microsoft works on. It's often here that new and smart constructs get implemented first, but also changed most often. F# is - at least to some extent - Microsofts playground.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.