vote up 8 vote down star
5

Before you down vote this question, I realize there are a few other questions but they are all asked with the notion that the OP wants to be a master, long-term, C# programmer. my question is different in that I don't want to be a master C# programmer, nor do I want to 'switch' to C# so I can program everything in it.

I am wondering if anyone knows of any good books, or online resources, that have the assumption that you want to program in C# for 20 to 40 minutes per day? I have been looking at C# as a language and it interests me, but I would prefer to use C# casually. The book, Learning Perl, by Randal L. Schwartz, Tom Phoenix, brian d foy has the assumption that you are a casual Perl user and you want to be able to write useful and effective scripts in only tens of minutes per day. I am looking for the C# equivalent that has 'no fluff' and allows you to get started writing C# in a short amount of time.

I realize C# and .NET are large in scope and features so if there is a book that allows you to get quick-started with C# but also covers more advanced features, that is fine as well.

I have taken a look at Jon Skeet's review page and will take those books into consideration but I have also found the book Essential C# 3.0: For .NET Framework 3.5 (2nd Edition) and it looks like a good book. It has positive reviews, too.

flag

The link to Jon's review page appears broken. It's not working for me, at any rate. – Bill the Lizard Mar 10 at 22:49

10 Answers

vote up 3 vote down check

I highly recommend Essential C# 3.0 (as you seem to have found)

http://www.amazon.com/Essential-3-0-Framework-Microsoft-Development/dp/0321533925/ref=pd_bbs_sr_1?ie=UTF8&s=books&qid=1236773066&sr=8-1

It has both beginner and advanced boxes as you read though the topics. Which do not interrupt the flow of reading but do help you out if your new to a concept (Beginner) or if you want to know advanced stuff.

It covers all Major topics of C#, including the run time. If your new to programming it's explanation of classes, inheritance, interfaces and so on is very good.

Best of all it's easy to read and concise. Also very modular in that you don't need to read from start to finish. Each chapter can be read at anytime without assumptions you have read any other chapter (it will recommend other chapters that are related though). As a result it can be used to target your learning to concepts you need to improve/understand as well as a permanent reference.

Excellent book IMO.

link|flag
+1. It seems like this is what I'm looking for. Accepted, thanks. – Nick Presta Mar 11 at 20:01
vote up 12 vote down

Head First C# is the book that most closely fits your needs (that I'm aware of).

Head First C#

link|flag
As ever (I really should have a snippet ready to c'n'p for this) - if you're going to get HFC#, make sure you get the most recent edition. It's fixed a lot of errors. – Jon Skeet Mar 10 at 22:55
@Jon: Thanks, I'll make sure I mention that in any future recommendations. – Bill the Lizard Mar 10 at 22:57
@Jon, Bill: Thanks for the recommendation. If no other answers come up with any better recommendation and explanation, I'll accept this. – Nick Presta Mar 11 at 0:13
Absolutely! This is where you need to start Gortok! Matter of fact, buy every Head First book you can! They totally RAWK! – Boydski Mar 11 at 15:19
+1: I upvoted this but Damien's answer seems to be what I'm looking for. I will still check out HFC#. – Nick Presta Mar 11 at 19:58
show 1 more comment
vote up 5 vote down

HeadFirst C# or Murach's C# 2008 or Wrox's Beginning Microsoft Visual C#

I am also a beginner. I have the Following C# Books:

link|flag
vote up 2 vote down

I went through the 2005 version of this book, it was a great resource and it's still on my desk.

http://www.microsoft.com/learning/en/us/Books/11298.aspx

link|flag
vote up 2 vote down

For the beginner I would recommend Inside C#, 2nd edition.

See here.

link|flag
vote up 3 vote down

I found the C# Programmer's Cookbook from ms press to be invaulable for learning the language - especially if you're not coding c# all the time. Loads of small worked examples for doing a lot of the simple dev tasks (file IO, db access etc) that could have you struggling when looking at c# and the .net framework without much experience in it.

AFAIK it's not been updated from the .Net 1.1 version (!) so it won't explain linq, generics etc but the c# and .net basics are well covered.

link|flag
vote up 3 vote down

I would definitely recommend Pro C# 2008 and the .NET platform, Fourth Edition

link|flag
vote up 2 vote down

I think that all the books above cannot point your request. For a simply reason: those book start from beginnins, that is, you have to read the previous chapter to understand the next one. Not always, of course, but that's true for the most part. You should identify the context of your problem. Choose the classes of framework or code snippets that face that.For this approach, I'd like to recommend C# Cookbook link text. A problem-solution style. No need to be a guru in OOP, but a copy-and-paste can save your time, sometimes, specially if you need C# casually.

link|flag
vote up 3 vote down

Have you looked at some of the online tutorials? I know you're asking about a book, but if you want to get started in a short time, online tutorial might be the place to start.
E.g. http://www.csharp-station.com/

link|flag
+1. I actually don't mind online resources provided they are good. I have seen links to c# station so I will check it out, thanks. – Nick Presta Mar 11 at 19:59
vote up 2 vote down

This is the book for who want to understand the WHY and HOW in OOP using C# 3.0 for beginners. You don't want to miss it. Beginning C# 3.0: An Introduction to Object Oriented Programming

link|flag

Your Answer

Get an OpenID
or

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