Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I wonder what are .NET technologies / C# language improvements you consider as breakthroughs in the .NET era for the last 5-10 years. I mean technologies that shifted developers' minds.

For example DirectX made assembler nearly abandoned for game programming in the end of the 20th century and jQuery extremely simplified Ajax web development as well as JavaScript code reusability.

What kind of breakthrough .NET technologies do you expect in the future and what modern .NET technologies are just a light evolution of well known approaches?

Do you consider .NET 4.0 parallel extensions and other improvements as breakthrough, or maybe we have reached the point when nothing radical is expected in modern programming?

share|improve this question
10  
This kind of question should be marked Community Wiki. – Henk Holterman May 23 '10 at 10:57
It's incredibly unwise to think that "nothing radical" is expected in some particular field. The world has at least a few million years to go. I'd expect a lot to change in that time. – Noon Silk May 23 '10 at 11:31
few millions? I think we have like two years to live. – Alon Gubkin May 23 '10 at 11:40
@Alon - Why so pessimistic? – Venemo May 24 '10 at 9:28

closed as not constructive by Noon Silk, eglasius, Henk Holterman, gnovice, interjay May 23 '10 at 16:59

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

5 Answers

WPF, with its break from the traditional Windows UI scheme (bye bye Window Handles) and rich data binding, is definitely the biggest game-changer I've encountered. It's even more of a change than when I moved from writing simple C++ interfaces via MFC to working with C# and WinForms. This technology is completely changing the way that I think about user interface development.

share|improve this answer
I agree. Have not experienced this technology in real life projects yet :( – Andrew Florko May 23 '10 at 14:08

In my opinion, the best things are:

  • LINQ - simply the best - obviously, as stated by other people
  • ORMs such as LINQ to SQL, NHibernate or Entity Framework
    The more mature ones even allow you to just write your classes and not care about the database at all. (Especially if you let them create the database for you.)
  • AJAX, jQuery and the frameworks around them - for obvious reasons
  • Declarative UIs (such as XAML or QML)
  • The emergence of design patterns promoting good architecture, such as MVC and MVVM
share|improve this answer

Ironically, I think Linq and ORM (NHibernate etc.) are two of the most significant new features of the .NET world to come along in the last 5-10 years. I say "ironically" because (warning: oversimplification) Linq appeals to developers who love SQL and want their code to be more like SQL, while ORM is for developers who hate SQL and never want to write another query in their lives.

share|improve this answer
ORM? Come on man, that's not even anything to do with the language! It's 3rd party provided. By definition it can't be included. – Noon Silk May 23 '10 at 11:30
That's why I said "the .NET world" instead of just .NET. ORM is a major player in the .NET world. – MusiGenesis May 23 '10 at 12:34

Linq-to-SQL (and other linq derivatives that use expression trees) have completely changed the way I expect database queries to be written. Even if I still write those non-typed, plain text SQL queries from time to time, most of the time I don't think it's "natural" anymore and I wish I could use Linq for this specific scenario.

Edit: another thing I couldn't live without anymore is Reflection. While not introduced by .NET, I think it managed to take it to its peak. While you can write code without using reflection at all, it often really simplifies some scenarios, at the cost of some performance.

That being said, I'm currently replacing most of my reflection code with text templates, which are not really new, but whose existence has been emphasized by VS2010. There are so many code generations possibilities introduced by inspecting your code before it has even been compiled. Meta-programming in .NET is taking all its sense now. It's becoming an invaluable tool to me.

share|improve this answer

Resharper is changing what little mind I have left.

share|improve this answer

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