vote up 8 vote down star
20

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#.

flag

16 Answers

vote up 14 vote down check

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|flag
Thanks for this - much appreciated. – mm2010 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
vote up 5 vote down

CodeProject is a good source

link|flag
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. – mm2010 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
vote up 17 vote down

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|flag
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
vote up 11 vote down

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

link|flag
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
vote up 2 vote down

There are some excellent blogs out there. For instance,

B# .Net Blog

Blogs from the Microsoft C# Team

link|flag
vote up 5 vote down

Hidden Features of C# on StackOverflow:

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

link|flag
vote up 12 vote down

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|flag
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
vote up 0 vote down

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

link|flag
vote up 4 vote down

Juval Lowy's Programming .NET Components.

link|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag
irc.freenode.net #C# – George Stocker Nov 6 '08 at 20:15
Errg, I meant ##csharp – George Stocker Nov 6 '08 at 20:16
vote up 1 vote down

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

link|flag
vote up 1 vote down

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|flag
vote up 5 vote down

You can't go wrong with these:

link|flag

Your Answer

Get an OpenID
or

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