Previously it was .net 2.0 which is the big change in .net developement. many developers are working mostly on this. Presently microsoft has introduced .net 3.0 and yet its next version .net 4.0. So the next version is going to be major change in .net development.

I have listed some features of this...

Workflow foundation WPF WCF Windows cardspace Agile methodalogy implementation. Silverlight features enhancement.

In the new generation framework what are the features that you like and why it attracts you.

link|improve this question

71% accept rate
See this Question - stackoverflow.com/questions/138367/… – Sauron Sep 4 '09 at 7:12
feedback

3 Answers

You missed .NET 3.5, which is actually a bigger package than .NET 3.0; .NET 3.0 adds things like WCF/WPF/WF, which are nicer ways to do things that were (generally) already there in the framework.

However, .NET 3.5 adds LINQ, which is huge and broad-reaching. LINQ-to-Objects is the most used, providing a more convenient model for regular code. But LINQ-to-SQL, and EF (in SP1) are ORM tools (with many others available).

.NET 4.0 targets a few problems, in particular threading (TPL/CCR) and dynamic objects (DLR). C# 4.0 has mainly changes to make dynamic objects easier to work with.

link|improve this answer
feedback

If you're asking which new features will the upcoming .NET 4.0 Framework present, I've heard a lot about Parallel Computing, specifically about a Task Parallel Library built in the core of the Framework, also PLinq or Parallel Linq, focusing on LINQ-to-Objects and LINQ-to-XML .

Check te Microsoft PDC Website and you'll find more interesting info.

link|improve this answer
feedback

I really loves lambda expressions. It makes things so much easier! I also look forward to some of the features in C# 4.0, such as optional parameters, named parameters, No PIA and much more. :-)

link|improve this answer
1  
Minor clarification: expression trees are a runtime (3.5) feature. Lambdas, however, can be seen as a language feature (C# 3.0) and are usable with .NET 2.0. Either way, yes: they're good ;-p – Marc Gravell Nov 13 '08 at 8:43
feedback

Your Answer

 
or
required, but never shown

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