What are the coolest new features that you guys are looking for, or that you've heard are releasing in c# 4.0.
|
feedback
|
closed as too localized by Will♦ Oct 14 '11 at 14:53
This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.
|
The dynamic stuff sounds cool if you need it but I don't expect to use it very often. The generic variance for delegates and interfaces is similar - the lack of variance is a headache at the moment, but many of the places where it's a pain won't be covered by the limited variance available in C# 4. The COM features don't particularly interest me - I really ought to get more of a handle on what they are though. Optional and named parameters could make a big difference when building immutable types: it enables syntax like:
without having mammoth combinations of constructor overloads. I'd prefer a bit more support for writing immutable types in the form of readonly automatically implemented properties, but I don't expect we'll get those. (They certainly aren't in the proposed feature list at the moment.) I'm personally actually more interested in a couple of the framework features of .NET 4.0 - in particular code contracts and parallel extensions. | |||||||||||||||||||||
feedback
|
|
Method parameter default values:
Also maybe anonymous return types:
| |||||||||||||||||
feedback
|
|
This is interesting for inherently untyped scenarios such as REST, XML, COM, Instead of cumbersome reflection semantics, you dot into variables declared as
All C# syntax is supported (I believe):
Reflection itself looks a lot cleaner:
| |||||
feedback
|
|
Enhanced support for Expression Trees! | ||||
|
feedback
|
|
Not strictly C#, but since .NET is tagged here's a good link regarding BCL changes. Note to self: Must rename my | ||||
|
feedback
|
|
the dynamic keyword looks like it can bridge the gap between dynamic languages like IronRuby or IronPython quite nicely, which will probably help its adoption in the Microsoft monoculture... that excites me. While I'm intrigued by it, I'm also worried that it will be overused, like Generics and LINQ, SQLCLR, etc :) | |||||||||
feedback
|
| ||||
|
feedback
|
|
C#4.0 1) PLinq 2) Named and Optional Parameters 3) Lazy 4) Co & Contra Variance 5) Task Parallel 6) Dynamic object 7) Expando object 8) Improved COM-Interop 9)Tuple only to name a few | ||||
|
feedback
|
|
Ability to write asynchronous code in synchronous fashion with async and await is cool. | ||||
|
feedback
|