CSharp/C# >> WhatsNew

by Murtaza Gandhi » Sat, 30 Aug 2008 17:26:44 GMT

may i know the new additions in terms of OOPS paradigms in Dotnet framework
3.5
for eg. using the extension method.

thanks



CSharp/C# >> WhatsNew

by Duggi » Sun, 31 Aug 2008 01:50:58 GMT


On Aug 30, 2:26爌m, "Murtaza Gandhi" < XXXX@XXXXX.COM >


Auto Implemented Properties
Local Type Inferences
Collection Initializers
Anonymous Types
Extension Methods
Lambda Expressions
LINQ


Major Focus is on LINQ... the rest of them to suppor LINQ...


Check out http://www.microsoft.com/NET/ for sp1 updates...

-Cnu

CSharp/C# >> WhatsNew

by JDeats » Sun, 31 Aug 2008 11:24:29 GMT

On Aug 30, 4:26 am, "Murtaza Gandhi" < XXXX@XXXXX.COM >


LINQ is the major new feature and it's a big one.... If you're already
familiar with .NET 3.0 I would recommend picking up the book
Pro LINQ (Lanuage Integrated Query in C# 2008) Rattz, Jr. Apress.
2007. as a supplement on LINQ, as Cnu said the other new 3.5 features
seem to exist to support LINQ.

CSharp/C# >> WhatsNew

by Marc Gravell » Sun, 31 Aug 2008 16:37:59 GMT

> (Duggi's list)

Just for completeness - most of those are C# 3 changes, not .NET 3.5
changes. I'll re-arrange:

C# 3 (fine on .NET 2.0/3.0):


C# 3 with runtime support (fine on .NET 2.0/3.0 with a few extra
types):


C# 3 with .NET 3.5:


Marc

CSharp/C# >> WhatsNew

by Arne Vajh » Sun, 07 Sep 2008 08:17:42 GMT


Or Jon Skeets book to cover the entire C# 3.0 ...

Arne