Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can i find a good in depth guide to C# 3? [closed]

It seems that C# 3 hit me without me even noticing, could you guys tell me about good in depth guides to C# 3? from lambda to linq to everything else that was introduced with the third version of the language.

Printed books would be nice, but online guides would be even better!

like image 919
albertein Avatar asked Oct 04 '08 18:10

albertein


People also ask

Is C in depth a good book?

The book explains each topic in depth without compromising the lucidity of the text and programs. This approach makes this book suitable for both novices and advanced programmers: the well-structured programs are easily understandable by the beginners and useful for the experienced programmers.

Which book is better for C++?

'C++ Primer' by Stanley B. Lippman, Josée Lajoie, and Barbara E. Moo is considered one of the best books to learn C++ programming and is ideal for programmers of all skill levels. This nearly 1,000-page long book has everything you need to become an expert C++ programmer, right from scratch.


1 Answers

ScottGu has some great posts on C# 3:

  • The C# ?? null coalescing operator (and using it with LINQ)
  • LINQ to SQL: Part 8 (this is an 8 part series, check the top of the post for links to the first 7)
  • Automatic Properties, Object Initializers, and Collection Initializers
  • Extension Methods
  • Lambda Expressions
  • Query Syntax
  • Anonymous Types

Some more useful links:

  • MSDN: Overview of C# 3.0
  • David Hayden: C# 3.0 Tutorials and Examples
like image 132
Eric Schoonover Avatar answered Oct 16 '22 15:10

Eric Schoonover