vote up 4 vote down star
1

What are the coolest new features that you guys are looking for, or that you've heard are releasing in c# 4.0.

flag

6 Answers

vote up 14 vote down

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:

Person p = new Person (name: "Jon", age: 32);

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.

link|flag
To add an example of this, see: marcgravell.blogspot.com/2008/11/… – Marc Gravell Nov 15 '08 at 9:08
This video is informative if you have an hour to kill... channel9.msdn.com/pdc2008/TL16 – paul.richardson Nov 15 '08 at 13:19
Code Contracts + 1 – Stephen Newman Sep 15 at 15:02
vote up 7 vote down

Method parameter default values:

public void MyMethod1(string value1 = "test", int num1 = 10, double num2 = 12.2)
{
  //...
}

Also maybe anonymous return types:

public var MyMethod2()
{
  // ..
}
link|flag
So does parameter default values mean we can call them like this? obj.MyMethod1("test",1); Would work with your provided method? – mxmissile Sep 15 at 20:46
This was the #1 thing I missed when switching from VB.NET to C#. – MiffTheFox Sep 15 at 21:04
would work and the variables will look like: value1="test", num1=1, num2=12.2 – Atmocreations Sep 15 at 21:05
vote up 3 vote down

IDynamicObject, the glue behind dynamic, allows interpretation of a call at runtime.

This is interesting for inherently untyped scenarios such as REST, XML, COM, DataSet, dynamic languages, and many others. It is an implementation of dynamic dispatch built on top of the Dynamic Language Runtime (DLR).

Instead of cumbersome reflection semantics, you dot into variables declared as dynamic. Imagine working with Javascript objects from Silverlight:

dynamic obj = GetScriptObject();

HtmlPage.Window.Alert(obj.someProperty);

All C# syntax is supported (I believe):

HtmlPage.Window.Alert(obj.someMethod() + obj.items[0]);

Reflection itself looks a lot cleaner:

public void WriteSomePropertyValue(object target)
{
    Console.WriteLine(target as dynamic).SomeProperty);
}

public void WriteSomeMethodValue(object target, int arg1, string arg2)
{
    Console.WriteLine(target as dynamic).SomeMethod(arg1, arg2));
}

dynamic is another tool in the toolkit. It does not change the static vs. dynamic debate, it simply eases the friction.

link|flag
1  
Holy crap.... Hadn't thought about casting objects to dynamic. That DOES make reflection a crap-ton easier! – Will Sep 15 at 20:58
vote up 2 vote down

Enhanced support for Expression Trees!

link|flag
vote up 1 vote down

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 :)

link|flag
i'm also worried about the overuse of dynamic. Hopefully I can add style check it on checkin – CVertex Nov 15 '08 at 8:25
2  
Generics overused? I agree about LINQ being sometimes overused though... – Meta-Knight Sep 15 at 21:14
vote up 0 vote down

Tuples

link|flag

Your Answer

Get an OpenID
or

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