up vote 11 down vote favorite
10
share [g+] share [fb]

C# and .NET has become the official programming platform at my company for all new IT projects. I'm a bioinformatics scientist with 15 years of experience with C, C++, and Perl. And, fortunately, I'm not in IT, so I don't have to do my work using C#. But I anticipate having to work on a project with a C# programmer, so it's time for me to learn C#.

I'm old-fashioned, so I like to learn from books. In your experience, what books have you found useful for learning C#?

link|improve this question
feedback

closed as not constructive by Jeremy Banks, Kev Sep 17 '11 at 22:45

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

11 Answers

If you have such experience in programming, I would recommend you C# 3.0 in a Nutshell from Joseph Albahari & Ben Albahari to dive into C#:

C# 3.0 in a Nutshell

  • Opening chapters concentrate purely on C#, starting with the basics of syntax, types and variables, and finishing with advanced topics such as unsafe code and preprocessor directives

  • Later chapters cover the core .NET 3.5 Framework, including such topics as LINQ, XML, collections, I/O and networking, memory management, reflection, attributes, security, threading, application domains and native interoperability

link|improve this answer
feedback

I liked Jon Skeet's C# in Depth due to the way it concentrates on the evolution of the language from version 1 to version 3. I wouldn't recommend it as your first C# book (nor would Jon, I seem to recall), but if you have another book that teaches you the basics, this one will help you understand why C# 3 is the way it is.

link|improve this answer
feedback

In addition to learning C#, it's also important to know what's available in the BCL (Base Class Libraries). I think the best book I've read on that topic is CLR via C# by Jeff Richter. It's a lot of information, but it's very well presented and really helps you understand how the CLR and BCL work.

link|improve this answer
+1 Currently working through this book at the moment and I agree its a great book. – David Relihan Jan 27 '11 at 19:21
feedback

It might not be your cup of tea, but I was fairly fond of Headfirst C#. The text is breezy & explained well enough, but the constant examples give something to sink your teeth into. The main caveat is that I didn't always feel like they motivated why the example code is idiomatic C# when I could think of other ways to accomplish the same goal.

link|improve this answer
feedback

Before I learned C#, I knew C++ and C.

I learned C# with the book C# Step by Step 2005 which was a great introduction for me and a great reference while I was learning the language. There is a 2008 version although, I have no experience with it.

link|improve this answer
feedback

C# Unleashed was fantastic for me. Both as reference, and examples.

link|improve this answer
feedback

Jesse Liberty = C# 3.5 I have been a fan of his since the Second Edition on 1.1 =>

Also

http://www.jaggersoft.com/

link|improve this answer
feedback

I probably wouldn't give this reply to a person who's just starting programming, but since you seem to have a lot of experience I will recommend two books.

One is about C# specifically: Professional C# 2008. This is a thorough, good introduction into the language. I own the 2005 version and it's great as a reference too.

And the other one is about object oriented architecture. If you don't mind reading the dry, heavy stuff, try Applying UML and Patterns.

You could also try Code Complete as the second book, because it gives you a pretty good introduction into the WHY's of OO, as well as best practices when coding. Its code examples are in several different languages.

link|improve this answer
feedback

Skip the books, watch some videos:

http://www.asp.net/learn/

link|improve this answer
feedback

Since you have some C/C++ experience you may also want to consult the C# language spec.

link|improve this answer
feedback

head first C# Rel.2 is the best book for learn C# quickly with some examples .

link|improve this answer
feedback

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