C# - Good Books/Tutorials for the advanced .net developer? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T05:20:13Zhttp://stackoverflow.com/feeds/question/110379http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/110379/c-good-books-tutorials-for-the-advanced-net-developer4C# - Good Books/Tutorials for the advanced .net developer?Joel2008-09-21T06:16:00Z2008-10-03T10:41:02Z
<p>I was just reading through the <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c">Hidden Features of C#</a> thread, and there were a lot of really neat tricks that I had never even heard of. But there wasn't really a whole lot of depth to them all.
It got me to wondering what kind of books and tutorials are out there that teach more advanced topics (Delegates, Lambdas, Threading, etc) and advanced tricks.</p>
<p>What books and tutorials have you all read that have helped you learn some more advanced tricks and features?</p>
http://stackoverflow.com/questions/110379/c-good-books-tutorials-for-the-advanced-net-developer/110391#11039113Answer by Stewart Johnson for C# - Good Books/Tutorials for the advanced .net developer?Stewart Johnson2008-09-21T06:25:08Z2008-09-21T06:41:19Z<p>I highly, highly recommend <a href="http://rads.stackoverflow.com/amzn/click/0735621632" rel="nofollow">CLR via C#</a> by Jeffrey Richter. It will help you understand that writing C# is really only an efficient way of writing IL. Making that understanding crystal clear for me gave me a whole new appreciation for why C# is the way it is, and exposed some nifty advanced patterns.</p>
<p>Two thumbs up for this book. If I had a third thumb it'd be up too.</p>
http://stackoverflow.com/questions/110379/c-good-books-tutorials-for-the-advanced-net-developer/110397#1103972Answer by TraumaPony for C# - Good Books/Tutorials for the advanced .net developer?TraumaPony2008-09-21T06:28:54Z2008-09-21T08:10:07Z<p>The best resource for me, apart from CLR via C# mentioned by Stewart Johnson, is the MSDN docs. Seriously, they're awesome. That, and the ECMA specification.</p>
http://stackoverflow.com/questions/110379/c-good-books-tutorials-for-the-advanced-net-developer/110402#1104021Answer by Slace for C# - Good Books/Tutorials for the advanced .net developer?Slace2008-09-21T06:35:30Z2008-09-21T06:35:30Z<p>I strongly recommend Bart De Smet's blog here: <a href="http://community.bartdesmet.net/blogs/bart/default.aspx" rel="nofollow">http://community.bartdesmet.net/blogs/bart/default.aspx</a></p>
<p>He's got some great stuff on advanced C# 3.0, Lambda and dynamic C#.</p>
http://stackoverflow.com/questions/110379/c-good-books-tutorials-for-the-advanced-net-developer/110429#1104292Answer by Mitch Wheat for C# - Good Books/Tutorials for the advanced .net developer?Mitch Wheat2008-09-21T06:58:36Z2008-10-03T10:41:02Z<p>I can highly recommend the following books:</p>
<p><a href="http://oreilly.com/catalog/9780596001810/" rel="nofollow">C# in a Nutshell</a>, by Joe and Ben Albahari</p>
<p><a href="http://manning.com/skeet" rel="nofollow">C# in Depth</a>, by Jon Skeet</p>
http://stackoverflow.com/questions/110379/c-good-books-tutorials-for-the-advanced-net-developer/115469#1154690Answer by Mitchel Sellers for C# - Good Books/Tutorials for the advanced .net developer?Mitchel Sellers2008-09-22T15:21:24Z2008-09-22T15:21:24Z<p>MSDN documentation and samples are some of the best bits and pieces. There are a few really good, "Whats new" type articles out there as well.</p>
<p>It just takes a good bit of digging to find them!</p>
http://stackoverflow.com/questions/110379/c-good-books-tutorials-for-the-advanced-net-developer/119200#1192001Answer by Lex Li-MSFT for C# - Good Books/Tutorials for the advanced .net developer?Lex Li-MSFT2008-09-23T04:54:08Z2008-09-23T04:54:08Z<p>I really enjoy Patrick Smacchia's Practical .NET 2 and C#2 before .NET 3.5's arrival. Hope Patrick can spare some time to update it to .NET 3.5.</p>
http://stackoverflow.com/questions/110379/c-good-books-tutorials-for-the-advanced-net-developer/119939#1199391Answer by AJ for C# - Good Books/Tutorials for the advanced .net developer?AJ2008-09-23T08:54:45Z2008-09-23T08:54:45Z<p>Bill Wagner's _**Effective C#**_ has been very helpful to me. It contains 50 specific strategies / policies on how to, quite simply, write better C# code.<br />
Each tip is explained in depth, with good code examples (but not too many), and an explanation of why it is important. This book is not for the novice, but for someone wanting to pick their C# up a notch. Example tips include: </p>
<ul>
<li>Prefer readonly to const</li>
<li>Minimize Boxing / Unboxing</li>
<li>Don't overuse reflection</li>
<li>Use using and try/finally for resource cleanup</li>
</ul>