Where do you get the best in-depth information for C# programming? I'm looking for tutorials, examples, blogs, specialized forums etc. dedicated to c#.

link|improve this question
feedback

16 Answers

up vote 15 down vote accepted

Eric Lippert's blog is second to none, IMO.

Charlie Calvert's Community Blog is also good - especially the Community Convergence posts which highlight interesting posts from elsewhere.

link|improve this answer
Thanks for this - much appreciated. – private Nov 6 '08 at 17:57
His blog is amazing. I've been following his posts since May or April and have learned a wealth of knowledge. Much on stuff we can't use yet at work since we're still on .NET 2.0, but regardless! ;) – Nicholas Mancuso Nov 6 '08 at 21:43
feedback

I recommend you Jeffrey Richter's "CLR via C#" book. You can learn CLR features and how does c# implement them. Also you can learn a lot about multithreading in c#, localization, appdomains etc. .net topics.

link|improve this answer
3  
That book makes me feel funny in the pants. – Will Nov 6 '08 at 19:08
I also recommend this book, and I already had on SO 2 times :) – Pop Catalin Nov 19 '08 at 11:19
feedback

Jon was quite humble, but (in addition to Eric Lippert's blog he mentioned above) his writings are indispensable:

Jon Skeet's C# FAQ

Jon Skeet's C# and .NET Articles and Links

link|improve this answer
I should say that the FAQ is pretty hideously out of date these days. Some time I'll get round to fixing it :) – Jon Skeet Nov 6 '08 at 19:28
feedback

If you can get just one book, get Jon Skeet's C# in Depth.

link|improve this answer
2  
And if you can get two, buy two copies :) (More seriously, CLR via C# is fab.) – Jon Skeet Nov 6 '08 at 19:29
feedback

CodeProject is a good source

link|improve this answer
2  
Sometimes. Sometimes it's appalling. You have to have a really good sense of who knows what they're talking about and who doesn't :( – Jon Skeet Nov 6 '08 at 17:57
I suppose there would be some good stuff there. – private Nov 6 '08 at 17:58
There's a lot of good articles if you know what you're looking for, although there is a lot of garbage you have to sift through. – Whytespot Nov 6 '08 at 18:03
I find the signal to noise ratio very low at CodeProject. – Nicholas Mancuso Nov 6 '08 at 21:48
feedback

Hidden Features of C# on StackOverflow:

http://stackoverflow.com/questions/9033/hidden-features-of-c

link|improve this answer
feedback

You can't go wrong with these:

link|improve this answer
feedback

Juval Lowy's Programming .NET Components.

link|improve this answer
feedback

There are some excellent blogs out there. For instance,

B# .Net Blog

Blogs from the Microsoft C# Team

link|improve this answer
feedback

This applies more to the .NET programming in general than C# in particular, but Krzysztof Cwalina's blog and Framework Design Guidelines are excellent for deep understanding of .NET internals.

link|improve this answer
feedback

When I've got a first job as a software developer I spent some time to go through Wrox Press - Professional C# 2005 and shortly after that I started to look at the examples from codeproject and msdn. Now when dealing with some new thing I just try to break it into pieces and use google to search forums and of course stackoverflow and then put pieces together.

link|improve this answer
feedback

DotNetKicks is a good source for .NET related articles across the intarwebs.

And, if you need a limo in Surrey, keep an eye out for the spammer in Upcoming Stories.

link|improve this answer
feedback

For other languages I find it extremely useful to join IRC chats with other users of that language to receive extremely useful help. Sometimes it is not even a matter of if the answer is available- if you are not in the right frame of mind you may not be looking in hte right places. THe best option is to have other people to talk to that are also familiar with the language to speak with to help you understand from another developers words.

Besides 'live chat' you should use google to find descriptions or examples of what you are looking to do. If you need a larger overview of the core concepts, read a book. But if you are looking for fine grain detail I suggest googling on a per case basis. You can't expect to have all the in-depth knowledge without having in-depth experience which will come when you have a particular problem to solve.

Unfortunately I don't know of an active IRC channel for C# (Anyone know of one?!)

link|improve this answer
irc.freenode.net #C# – George Stocker Nov 6 '08 at 20:15
Errg, I meant ##csharp – George Stocker Nov 6 '08 at 20:16
feedback

DevX.com is a great place to ask questions, and is one of the few programming forums where the moderators don't allow much in the way of picking on newbies. Each of the forum sections is moderated by someone with a measure of authority as well.

link|improve this answer
feedback

I found the WROX Professional C# [substitute latest version here] to be a good starting point to the C# language.

For advanced techniques, I highly recommend "More Effective C#" by Bill Wagner.

link|improve this answer
feedback

MSDN would be my suggestion if you are just starting out with C#.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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