Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looking at taking F# for a test drive. What is a really good book to get started for a C# developer?

share|improve this question

closed as not constructive by Bill the Lizard Oct 2 '11 at 16:20

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.

10 Answers

up vote 19 down vote accepted

Books currently available as of January, 2010 in order of release:

Books in development:

share|improve this answer
1  
For polls, listing 1 book per answer works best. – EndangeredMassa Sep 16 '08 at 2:53
1  
I don't have editing permissions yet, but the name of Petricek is Tomas, without an H. Minor detail, but still :) – Michiel Borkent Sep 19 '08 at 9:47
1  
"Progamming F#" von chris smith is really good for starting from an .net-c# background (o; – Michael Piendl Feb 11 '10 at 9:47
2  
Please note: F# for Technical Computing has a slightly dodgy (in my opinion) gotcha, which is that the charting examples use the author's own Visualisation library, which isn't included in the price. This doesn't take away from the value of the book's content, but it's worth knowing in advance. – Benjol May 25 '10 at 7:51

I actually learned F# initially by way of Developing Applications With Objective Caml, which is available for free[1] online. It's not 100% applicable, of course, but since you're just starting out the core language elements certainly are very compatible. I would suggest using fsi and the ocaml interpreter side-by-side, it will help you learn the differences quickly.

  1. http://caml.inria.fr/pub/docs/oreilly-book/html/index.html
share|improve this answer

It may be that it was the first thing I read, but I found "Foundations" the most confusing.

"Expert" goes incredibly deep, but the first few chapters will give you enough of the language to be really productive.

It's a learning curve, but stick inn there - it's a beautiful language.

"Scientists" is great, but very selective and wonderfully rich - there's a ton of information in a relatively short book. Also finding "The Little MLer" very useful as a sort of introduction to type calculus.

Looking forward to F# in a nutshell.

share|improve this answer

My friend is one of the developers behind F# and he is currently writing a book about it. Follow this link for more information and first chapters. http://tomasp.net

share|improve this answer

F#'s not a purely functional language, but you can benefit a lot from learning the ideas. I found this book on Haskell to introduce a lot of concepts: http://book.realworldhaskell.org/ - it's not a replacement for the other books mentioned, but may be of some help.

share|improve this answer

Expert F# is my favorite but the first edition is quite out of date and so would be difficult to work from. I would go with Chris Smith's Programming F# right now.

share|improve this answer

Expert F# from Apress

share|improve this answer

i know also "Foundations of F#" by Robert Pickering, again from Apress

share|improve this answer

F# is a (purely) functional language as far as I know. Any book on Haskell is most likely a very good way to start: the language is older and are of many universy courses. In fact Haskell is/was developed in part by people of Microsoft Research labs. So there are quite a lot of good books and tutorials on that language to start learning functional programming. My university teacher started to work for Microsoft see: http://channel9.msdn.com/shows/Going+Deep/Erik-Meijer-Functional-Programming/

General search on functional programming courses: [Google functional programming course][1]

[1]: http://www.google.nl/search?hl=nl&client=firefox-a&rls=org.mozilla%3Anl%3Aofficial&hs=Nds&q=functional+programming+course&btnG=Zoeken&meta= Google

share|improve this answer

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