vote up 72 vote down star
53

Some blogs on the Internet give us several clues of what C# 4.0 would be made of. I would like to know what do you really want to see in C# 4.0.

Here are some related articles:

Channel 9 also hosts a very interesting video where Anders Hejlsberg and the C# 4.0 design team talk about the upcoming version of the language.

I'm particularly excited about dynamic lookup and AST. I hope we would be able to leverage - at some level - the underlying DLR mechanisms from C#-the-static-language.

What about you ?

flag
show 3 more comments

92 Answers

prev 1 2 3 4
vote up 84 vote down

Optional Parameters.

public string ThisFunctionHad3OverloadsBefore
    (string inputString,
    int desiredLength = 20,
    char desiredChar = 'x',
    bool keepCapitalization = false)

Visual Basic.net has it, so it's indeed not a limitation of .net but of C#. And in the C# 3.0 Compiler, Microsoft introduced Auto-Properties, which also serve absolutely no purpose other than reducing 6 lines of code into 1 line to remove clutter. Method Overloads that do nothing except calling the master function with some fixed parameters are no different than Properties with an "empty" Getter/Setter - they are just unneccessary clutter.

Edit: Good stuff: We get BOTH Optional and Named parameters in C# 4.0.

link|flag
1  
They made Auto-Properties just to reduce clutter, so they can as well make Optional Parameters for the same purpose :) – Michael Stum Sep 26 '08 at 9:33
2  
Coming from a long long debugging session because of optional parameters, I can definitely say that I do not want them in C# 4.0. – Lasse V. Karlsen Sep 26 '08 at 10:29
1  
lassevk - I'm with you 100% there, optional parameters are the devils own creation and have caused me more headaches than I care to think of. – Rob Sep 26 '08 at 10:35
1  
Interesting. I see where you're coming from (Overloads allow setting Breakpoints into the function and the stacktrace shows exactly from where you come from), but what are some actual problems? In my mindset, overloads are if you have different logic, not just different parameters. – Michael Stum Sep 26 '08 at 12:51
1  
I'm glad they left out optional parameters, the code is cleaner than VB in this sence. Last week i was working with VSTO and I have tons of optional params I have to replace with Type.Missing... This makes things complicated and hard for people trying to use your code. how can we predict the outcome – Alexandre Brisebois Oct 1 '08 at 7:39
show 20 more comments
vote up 100 vote down

Extension Properties, hands down. I love extension methods and want to be able to ditch the parentheses when they're not appropriate.

Finally I'll be able to type:

var time = 2.Minutes.Ago;

Edit Someone asked me to edit the post with some (hypothetical) code which would enable the above syntax, so here goes:

public static class MyExtensions
{
    // we need the "this" parameter even though it's a property
    public static TimeSpan Minutes(this int i)
    {
        get { return new TimeSpan(0, i, 0); }
    }

    public static DateTime Ago(this TimeSpan t)
    {
        get { return DateTime.Now.Subtract(t); }
    }
}

It is a bit weird, because an extension property would need an argument representing the "this" object. I don't know if the method-like parameter syntax is the best option here, but it feels fairly natural.

link|flag
7  
True - I think read-only extension properties would be enough. Settable ones would be a bit more complex to implement - more like Extender Providers or Attached Properties. – Matt Hamilton Sep 29 '08 at 6:13
20  
This makes no syntactic sense. – Rick Minerich Oct 2 '08 at 13:55
23  
What's so wrong with typing var time = DateTime.Now.AddMinutes(-2). It it really that much better to type stuff like 2.Minutes.Ago? Maybe we should all go to Cobol and MULTIPLY B BY B GIVING B-SQUARED. – Kibbee Oct 31 '08 at 12:48
12  
People think about time in terms of "2 minutes ago" not in terms of "the current time plus negative-2 minutes". That's why it's so much better – Orion Edwards Nov 4 '08 at 0:25
7  
The problem with 2.Minutes.Ago is that its very English centric. Its said that this is helpful because thats the way we think. It would be more acurate to say thats the way native English speakers think. I agree with Kibbee a mathematical representation is better. – AnthonyWJones Nov 13 '08 at 16:25
show 23 more comments
prev 1 2 3 4

Your Answer

Get an OpenID
or

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