vote up 70 vote down star
52

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

1 2 3 4 next
vote up 97 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
6  
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
22  
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
vote up 83 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 5 vote down

It's too late now but instead of Linq I would have loved to have seen some kind of list comprehension (such as in Python or Haskell). It has the same expressive power but uses a more lightweight syntax.

link|flag
show 4 more comments
vote up 0 vote down

a ReadMyMindAndBuildApplication() method - that could be neat.

Or XML Literals like in VB.NET

link|flag
1  
Nah, code is logic, data is stored information. While there is some overlap (constants, code resources) for the most part you want to keep data out of code. – Keith Sep 26 '08 at 15:47
show 7 more comments
vote up 22 vote down

My candidate would have to be point 4 from the anastasiosyal.com reference, "Safe Null Dereferencing Operator" .. The elegance that this could introduce in code that I've both written and seen is boggling. So that'd be my candidate for a most wanted feature for C# 4.0!

link|flag
show 4 more comments
vote up 39 vote down

1) Record/Tuple return variables:

public { string ancestorType, int ancestorId } GetAncestorLookup()
{
    //...do stuff
    return new { ancestorType = var1, ancestorId = var 2 };
}

var ancIdent = GetAncestorLookup();

switch( ancIdent.ancestorType )
{
   ... and so on

2) Implied generics on class constructors

3) More constraints for generics, for instance numeric:

public T SquareRoot<T>( T input ) where T: numeric

//or for collections:

public T Sum<T> ( IEnumerable<T> input) where T: numeric

public T StandardDeviation<T> ( IEnumerable<T> input) where T: numeric

Or possibly ones based on operator overloads:

public T Product<T> ( IEnumerable<T> input, T start) where T: operator *
{
    T result = start;
    foreach( T item in input )
        result *= item;

    return result;
}

Or ones for enums:

public static bool IsSet<T>( this T input, T matchTo ) 
    where T:enum //the constraint I want that doesn't exist in C#3
{    
    return (input & matchTo) != 0;
}

4) Internal (rather than private) anonymous types.

5) Strong (built into reflection) support for duck-typing. I want

object someObject = //...
IExpected duckTyped = Reflection.Get<IExpected>( someObject );

//or even
duckTyped = someObject as IExpected;

if( duckTyped != null )
   duckTyped.InterfaceMethod();

This would work whether someObject's actual type implemented IExpected or not, so long as it could.

6) Equivalent for ?? on properties of nullable objects

link|flag
2  
I'd love to have typed tuples/records. – Thomas Danecker Sep 26 '08 at 14:08
1  
Re 3 & 4, see www.pobox.com/~skeet/csharp/miscutil/usage/genericoperators.html - you can have this today with .NET 3.5 – Marc Gravell Nov 4 '08 at 12:47
3  
Support for tuples will be in the CLR for .NET 4.0. – Scott Dorman Nov 12 '08 at 16:52
show 7 more comments
vote up 64 vote down

As a follow-up to Keith's suggestion (#3) for more generic constraints, I'd like to be able to constrain a generic type based on its constructor signature. For example:

public T GetSomething<T>() where T : new(int, string)
{
    return new T(1, "foo");
}

Right now I can use the "new" constraint to tell the compiler that "T" has a default ctor, but there's no way to tell it that T has a ctor with a specific signature.

link|flag
4  
marxidad is right. constraining to classes that have a T(int,string) constructor is meaningless, there's no constraint that these constructors have the slightest thing in common. Could be T(maxconnections, urlToConnectTo) and U(listCapacity, fontName) – Anthony Oct 26 '08 at 16:04
5  
@Anthony - then surely new T() means even less? And yet the language supports that. The point of constraints is to declare what operations can be performed, not to lock down what they ultimately mean. – Earwicker Dec 15 '08 at 8:28
show 6 more comments
vote up 32 vote down

A longer delay between releases.

Seriously, programming languages are not console Football games - we don't need a new roster each year. What we do need is a period of stability, so the community can learn to understand what's already in the marketplace. It's at the point where you ask "Do you know C#", and actually, it's a meaningless question. Good 1.0 is not good 2.0 is not good 3.0, yet they've all appeared in about 5 years. Even here, I find it hard to provide sound example code to questioners who've not specified their version because the reasonable methods are so different between each.

link|flag
22  
I disagree. Give me new language functions every year - I can keep up and I expect professional developers to do so too. This rapid progression right now is C#'s big advantage over Java - MS should push it while they can. – Keith Sep 26 '08 at 11:45
4  
Especially if you target desktop applications. It's hard to always ask a client for an update of .Net by every upgrade. Specially if they have an IT department that wants to test everyting. – GvS Sep 26 '08 at 13:58
6  
The libraries can update every 2-3 years just fine. But the core language is moving way too fast. I have 20 year old C and 10+ year old C++ code that still compiles clean and I understand the syntax. 7 Years of C# and my original code looks totally different than what I write today. – Jason Short Oct 5 '08 at 14:01
4  
@ Kyralessa, they ain't dropping winforms or webforms, So stick with them until you find a good reason to switch, all MS is doing is providing new tools to attack problems from a different angle, not replacements in how it's already done. – Sekhat Oct 29 '08 at 10:17
4  
Just because someone 'hasn't completely mastered' the language is no reason not to add features. The lack of a warm fuzzy is no reason not to develop the language. As above have indicated... there are no features removed... – jle Mar 27 at 16:01
show 14 more comments
vote up 16 vote down

Better handling of IDisposable objects.

Managed c++ removes many of the headaches associated with IDisposable classes through stack style semantics for reference objects and destructor = Dispose implementation with automatic chaining.

C# would be a better language if it went that way too.

link|flag
5  
Why not just "using"? – Marc Gravell Sep 29 '08 at 15:16
show 5 more comments
vote up 0 vote down

I would like to be able to cast between arrays of unmanaged types without the need for unsafe code and fixed pointers. There are some hacks that you can use to do this (explicit layout structs), but language support would be great.

float[] floatArray = (float[]) byteArray;
link|flag
show 3 more comments
vote up -2 vote down
  • Interfaces that include a class' static members.
  • Option to allow sub-classes to inherit attributes from their parents.
  • Generic constrains based on value types.
  • Multiple Inheritence the Eiffel way.
link|flag
show 5 more comments
vote up 6 vote down

I would like to see some of the Design by Contract principles as a first class language feature, perhaps leveraging on method attributes which can instruct the compiler to wrap the method call with code which runs before and after execution (aka AOP)

EDIT: I had a useful chat with Anders at the PDC following his Future of C# talk. He told me that they don't currently have an extensibility mechanism planned for C#, but the fact that a later C# variant will include the ability to call into the compiler means it would be fairly straightforward to decorate code with your own markup, and write a preprocessor which calls into the compiler and augments the code being compiled with whatever you like. Pretty much like IL-weaving, but done at the source level.

Still not ideal, as the debugging story would be flawed, just as it is with IL-weaving, because the source file no longer matches the compiled objects.

link|flag
show 3 more comments
vote up 72 vote down

The question has already included a link to my blog, so I'm not going to waffle here, but:

I want better support for immutability. I'm 99% sure I won't get it in C# 4, but that really is my chief request. C# 3 made it easier to create and use mutable types (with automatically implemented properties and object initializers). The same level of support for immutable types would be very nice indeed. It's harder to do, but would be very welcome. I suspect some variation on the builder pattern is required, basically.

Jon

link|flag
1  
@Anthony: I keep my ear to the ground :) – Jon Skeet Oct 10 '08 at 11:43
1  
Maybe they will do it at the same time as pattern matching and abstract data types... – Ben Lings Jul 28 at 17:05
show 8 more comments
vote up 18 vote down

Named parameters

Reading code with calls to methods like MessageBox.Show, will be much more clear

link|flag
2  
Sounds like you'll get your wish - Anders announced at PDC08 named parameters will be in C# 4. – Judah Himango Oct 29 '08 at 17:30
show 2 more comments
vote up 13 vote down

Much much better type inferrence for generic methods.
Example: F#

I dont want to use <,,,>() and make the code less readable when compiler can easily deduct the types from method parameters.

Edit: Example in c# 3.5 that should work:

I have method

public static TResult Aggregate<T, TResult>(IEnumerable<T> elements, Func<TResult, T, TResult> Aggregator){...}

and another

public static string CSV(string s, string s1){...}

so for me this should compile

string[] parts = "aaa;bbb;ccc".Split(';');
string result = Aggregate(parts,CSV);

but it's not, and I must write

string result = Aggregate<string, string>(parts,CSV);
link|flag
1  
C#3 already does this, if the type can be inferred from the parameters it can be skipped. – Keith Sep 26 '08 at 13:12
show 4 more comments
vote up 50 vote down

Auto implemented property initializers.

public List<string> MyList { get; set; } = new List<string>();
link|flag
2  
I dont understand this. Why wouldnt you use public List<string> MyList = new List<string>(); instead – acidzombie24 Jul 30 at 17:12
6  
@acidzombie24 because that would be a field, and public fields are no good. Properties and Fields are not interchangeable. – Rex M Jul 31 at 4:39
show 3 more comments
vote up 15 vote down

I'm a nostalgist:

System.Error.BlueScreenOfDeath.Appear();
link|flag
4  
This would imply that we need access to the System.Error.BlueScreenOfDeath namespace, when we all know that the BSOD is ever-present. A globally available BlueScreenOfDeath(string crypticErrorMessage, int insanelyLowDisplayTime) method would suffice. – JoshJordan Sep 9 at 20:05
show 6 more comments
vote up 51 vote down

All of the design-by-contract stuff from Spec#.

Seriously, it's awesome.

link|flag
4  
+1 from me. Especially the ability to specify non-nullable reference types. Not only could this reduce runtime errors but it could improve the performance of method dispatching under certain circumstances. – Drew Noakes Oct 13 '08 at 9:39
1  
Code Contracts will be part of .NET 4. It's language agnostic too! – Steve Dunn Mar 23 at 14:49
show 10 more comments
vote up -3 vote down

At times I've wished I had a ?= down-cast operator, like in ABAP, to ease the wordiness of explicit type casting. I'm sure there's a reason it doesn't already exist, but I'm throwing it out as food for thought.

// implicit up-cast
Base object = new Derived();

// explicit down-cast
SomeClass foo = (SomeClass)bar;
// or
SomeClass foo = bar as SomeClass;

// implicit down-cast operator concept
Base bar = new Derived();
Derived foo ?= bar;

The condition for ?= is that the two types must be related. The outcome is just shorthand for using the (Type) type cast operator without explicitly specifying the type. This has the added benefit of compiletime type compatibility:

// Runtime error
UnrelatedClass baz = new UnrelatedClass();
Derived foo = (Derived)baz;

// Compiletime error
UnrelatedClass baz = new UnrelatedClass();
Derived foo ?= baz;   // baz's type has no relation to foo's type
link|flag
show 3 more comments
vote up 101 vote down

I would like to declare enums of other types than int, byte, short, long:

public enum MyEnum : string
{
    Value1 = "Value1",
    Value2 = "Value2"
}

And/Or it would be nice if enums could have methods, like this:

public enum MyEnum
{
   Value1 = 1,
   Value2 = 2


   public override ToString()
   {
      switch(this)
      {
          case Value1:
              return "String representation of Value1"

          case Value2:
              return "String representation of Value2"
      }
   }
}
link|flag
2  
This feature would be awesome, but it's probably more a .Net Framework feature than a language specific feature. Other .Net languages would need to support it also, not just C#. – Chris Pietschmann Oct 15 '08 at 21:31
4  
I find it hard to see the benefit of this. Would "public enum MyEnum : string" have only 2 valid values? Oo, how is it different from "public enum MyEnum" - which already has ".ToString()" ? Would the storage be less efficent due to being a string? What is the upside? – Anthony Oct 26 '08 at 16:01
4  
Like Anthony, I cannot see the benefit. This seems like a foolish feature to add. – Judah Himango Oct 29 '08 at 17:25
1  
This can actually be achieved already (to an extent) with Attributes and Extension Methods. A guy at work had to do it so he had attributes on each enum value and then an extension method ToFriendlyName() which reflected for the attribute. Not 100% the same, but damn close – Slace Oct 31 '08 at 12:56
2  
Why not simply use a class with constants only? – zoman Jul 24 at 22:30
show 15 more comments
vote up 4 vote down

Traits. In fact, there has been research about implementing it in C# a couple of years ago (http://www.iam.unibe.ch/~scg/Research/Rotor/index.html)

link|flag
show 1 more comment
vote up 6 vote down
public static T CallWithCurrentContinuation<T>(Function<Continuation,T> cc);
link|flag
show 4 more comments
vote up 11 vote down

Given that everyone hits issues with generics and things that should just work intuitively, I'd say that some implementation of contravariance / covariance for generic types would be great. If the types could be inferred by the compiler / runtime that would be brilliant, if I need to specify some syntax like in java, fine.

Eric Lippert has a great series of posts on this and even suggests some syntax options (and asked people to vote for their favorite).

link|flag
show 6 more comments
vote up 29 vote down

To be able to write binary values:

int myInt = (int)%00011011 | (int)%11111110 | myOtherInt;
link|flag
1  
Well, if someone hasn't had a use for a feature in 6 years, it can't possibly be useful. Um, by the way, I've been coding for a while now, and I've got a big list of things they should get rid of since I don't use them. – Beska Apr 23 at 17:14
1  
You should try embedded programming (.Net Micro Framework), flags, and socket/device code. You would see how nice playing with bits can be. Right now I have extension methods and special structs to make some of these ideas possible. But language support would be much nicer and faster. – Matthew Whited May 8 at 18:27
show 9 more comments
vote up 5 vote down

How about adding nothing? Or perhaps even taking something away! :O

We espouse simplicity yet we never seem to apply it to our own languages.

link|flag
show 3 more comments
vote up 22 vote down

Anonymus enum-parameters

Dont even know if the term exists or if it's accurate, but i thought something like this would be convenient:

void SetUserStatus(status={User, Admin, Banned})
{
  if(status==User)
    DoStuff();
  ...
}

This way you don't have to declare an enum that uses at least 5 lines of code every time you want an enum that only is used for one function.

link|flag
1  
I imagine this would be confusing for the parser. Calling code would look like: obj.SetUserStatus(User); ...it wouldn't be clear to the parser what this symbol meant. – Drew Noakes Oct 13 '08 at 9:29
1  
This is a GREAT idea – acidzombie24 Jul 30 at 16:32
show 3 more comments
vote up 2 vote down

Having a Me generic type in all classes. For example I currently have the following:

public abstract class Foo<T> where T : Foo
{
     public T Activate();
}

Meaning I have classes like:

public Bar : Foo<Bar>
{
   public override Bar Activate();
}

It would be nice to say something like:

public abstract class Foo
{
  public abstract ?Me Activate();
}

A further feature would be:

public class Foo where ?Me : new()
{
   private Foo ActivateNew()
   {
      ?Me result = new ?Me();
      result.Initialize(...);
      return result;
   }
}
link|flag
show 7 more comments
vote up 5 vote down

Not a C# 4.0 feature per se but more of a CLR 3.0 feature.

Generic types that inherit type parameters :

public class SignalStream<T> : T, ISignalZeroRead where T: Stream {
     public override int Read(byte[] buffer, int offset, int count)
     {
        int read = base.Read(buffer, offset, count);
        if (read == 0)
            SignalZeroBytesRead();
        return read;  
     }
     public void SignalZeroBytesRead() {
         ...
     }

Usage example:

 var s = new SignalStream<NetworkStream>();
 var f = new SignalStream<FileStream>();
 var m = new SignalStream<MemoryStream>();
 etc...

This can be very useful if you want to extend for example the winforms controls and don't want to subclass a few dozens of them just to implement some interface or add a functionality.

link|flag
1  
@mausch, not if you try to create monads ;) – Pop Catalin Jan 20 at 9:34
show 1 more comment
vote up 0 vote down

Would be interesting if I could do, inside the context of Dynamic Lookup (a feature to come with C#4), something like that:

dynamic
{
   object dynamicObject = GetDynamicObject();
   string method = "Foo"; /* or a call to somewhere in order to initialize this string */
   dynamicObject.method(); /* in this case, it means 'dynamicObject.Foo();' */
}

The goal of DLR is to ease the way we use reflection in C#. Since this construct can't compile in normal C# (object.stringIdentifier() ?), could inside a C# 4 dynamic block do this to improve reflection usability.

I know that according to the definition I saw on this article, this should call a method named 'method'. But when there is an identifier on the block with this name, could be more interesting to the developer to use this information. This identifier could refer basically to a string, but pottentially to other objects with more method info.

link|flag
vote up 1 vote down

I put in a feature request for ruby-style blocks.

link|flag
show 4 more comments
1 2 3 4 next

Your Answer

Get an OpenID
or

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