What are the coolest new features that you guys are looking for, or that you've heard are releasing in c# 4.0.
|
|
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. |
||||||
|
|
|
Method parameter default values:
Also maybe anonymous return types:
|
||||||
|
|
|
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:
|
||||
|
|
|
Enhanced support for Expression Trees! |
|||
|
|
|
|
the dynamic keyword looks like it can bridge the gap between dynamic languages like IronRuby or IronPython quite nicely, which will probably help it's 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 :) |
||||||
|
|
|
|
|||
|
|
