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

vote up 0 vote down

If i need to change open dialog, like this

public class MyDialog : OpenFileDialog
{
   ...// change some user interface on designer
}

public static void Main()
{
    OpenFileDialog.DefaultForm=new MyDialog(); // Every Dialog has a DefaultForm property
    //MessageBox.DefaultForm, SaveFileDialog.DefaultForm, ColorDialog.DefaultForm etc.
}

and using like this

void MyFunc()
{
   OpenFileDialog od=new OpenFileDialog(); // 
   od.ShowDialog();// MyDialog shown
}
link|flag
vote up 2 vote down

Multiple/generic setters for properties:

private Uri _linkUrl;
public Uri linkUrl
{
    get { return _linkUrl; }
    set
    {
        _linkUrl = value;
    }
    set<string>
    {
       _linkUrl = new Uri(value);
    }
}

//this of course works fine
MyObj.linkUrl = new Uri("http://stackoverflow.com"); 

// but I could also just do this:
MyObj.linkUrl = "http://stackoverflow.com";

Also see the discussion with this other question.

link|flag
2  
I believe the same result can be achieved by having an implicit overload operator on the Uri class, for instance. – eulerfx May 29 at 21:53
vote up 0 vote down

The ability to map a class to an interface implementation outside the class definition.

For example, let's say you're building a file archiving/encryption utility, and you want to build on SharpZipLib. You also have a separate PGP implementation. It would be nice to be able to map the base SharpZipLib interface and the separate PGP code onto a common interface that can youc can use in the rest of code without caring which is which.

Another example would be mapping System.Xml.Serialization.XmlSerializer to implement System.Runtime.Serialization.IFormatter.

I have no idea what the syntax would look like (perhaps similar to extension methods?), but I'd love to see it made possible.

link|flag
vote up 2 vote down

const parameters and const methods ala C++ (http://stevedunns.blogspot.com/2008/11/c-4-default-parameters.html).

Also, extension properties. The comments on this request above stated that for extension properties to work they'd have to be readonly. const-ness would ensure this.

link|flag
vote up 0 vote down

I want direct access to low level system APIs and never don't "to dirty the hands" with c++ :-)

link|flag
vote up 1 vote down
link|flag
vote up 5 vote down

Missing:

  • methodof/propertyof
  • delegate and enum generic constraints
  • lambda-expressions as attribute parameters
  • generic attributes
  • &&=, ||=, ??= assignments
  • way to specify generic constraints on operators
  • yield foreach

Nice to have:

  • AddRange support in read-only collection initializers
  • TThis pseudo-type in generic constraints (or even full JavaGI)
  • Some way of null-proof property traversal, like ?(a.B.C) returns null if a is null.
  • Shortcut syntax for IEnumerable<>
  • Object initializer support for factory method return values
  • Better forms of string.Format -- $"All ${userName} bases are belong to us".
link|flag
1  
Upvote for generic attributes. Needed those recently. Other points ain't bad too. :) – Arnis L. Jun 26 at 9:26
2  
what do you mean by generic attributes? – acidzombie24 Jul 30 at 15:17
1  
Something like [TypeConverter<EnumConverter>] instead of [TypeConverter(typeof(EnumConverter))]. – Andrey Shchekin Jul 30 at 19:37
show 5 more comments
vote up 0 vote down

Methods that must be private and can only be called from constructors and other such methods, but can modify readonly fields.

link|flag
show 1 more comment
vote up 12 vote down

Adding an IArithmetic interface, which would be implicitly implemented by numerical primitives (int, double, etc). Currently it is not possible to do numerics with generics - you cannot even define a generic method like T add(T x, T y).

See also: Feedback ID 94264 on Microsoft Connect

link|flag
show 1 more comment
vote up 0 vote down

I'd like to be able to make private variables local to a region, so that I can force myself to use accessors. Like this:

#region MyValue

private int myValueSets = 0;

[RegionLocal("MyValue")]
private int myValue = 0;
public int MyValue
{
    get { return myValue; }
    set { myValue = value; myValueSets++; }
}

#endregion

public void doStuff()
{
    // this is OK
    int i = MyValue;

    // so is this
    int j = myValueSets;

    // but this is a compile-time error
    int k = myValue;
}

Since it's just there as a warning to the compiler, it wouldn't require any changes to the MSIL.

Oh, and another vote for string enums, please. Maybe other structures could be enumerated - Color enums would be handy.

UPDATE: Mike Hofer points out that regions don't mean anything to the compiler, so as an alternative way of achieving the same thing, how about allowing variables to be scoped like this?

public int MyValue
{
    int myValue = 0;

    get { return myValue; }
    set { myValue = value; myValueSets++; }
}
link|flag
show 2 more comments
vote up 1 vote down

Fascinating talk by Anders at the PDC:

http://mschnlnine.vo.llnwd.net/d1/pdc08/WMV-HQ/TL16.wmv

It looks like C#4 will support:

  • More parallelism
  • dynamic types with the new "dynamic" keyword
  • optional and named parameters - easy interop in C# at last!
  • co & contra variance on generics
  • better compiler control for dynamic code execution
link|flag
vote up 3 vote down

Static extension methods - extension methods for classes themselves, not only for objects.

public static class MyExtendingClass
{

// Regular extension method
public static void Save(this String st, String filename)
{
    // writes st to filename
}

// Static extension method
public static String Open(static this String, String filename)
{
    // returns string read from filename
}

// Extension constructor
public static MyDataType(static this String, String filename)
{
    var data = new MyDataType();
    MyDataType.LoadStateFrom(filename);
    return data;
}

}

Usage:
String st = String.Open("myfile.txt");
String.Save("yourfile.txt");
MyDataType data = new MyDataType(filename);

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

Automatic dependency & notifiable properties and simpler syntax for dependency properties:

class MyNotifyingClass : INotifyPropertyChanged
{
    Object MyProperty
    {
        get;
        set; // this should automatically invoke ProperyChanged
    }
}

class MyDependencyClass : DependencyObject
{
    [DependecyPropertyAttributes(DefaultValue = Null, OnChanged = ...)]
    Object MyDependecyProperty
    {
        set;
        get;
    }
}
link|flag
vote up -4 vote down

multiple class inheritance, string enums, uncrippled switch, a javascript style "with", and yes design-by-contract

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

All of these posts have been what people wanted to see in C# 4.0. Now that it has actually been announced, we can safely say that the following features will be part of C# 4.0:

  • dynamic dispatching (with a new dynamic keyword)
  • named and optional paramters
  • contravariance and covariance (through in and out keywords)
  • Tuples
  • BigInteger

There is more, but this covers most of the features that people were asking for that will be in the next release.

link|flag
vote up 2 vote down

Instead of this:

string address1 = "";
if (person != null && person.Address != null && person.Address.Address1 != null)
    address1 = person.Address.Address1;

I want to be able to write this:

string address1 = person?Address?Address1;

Or something to that effect.

link|flag
show 1 more comment
vote up 0 vote down

I would want optional parameters like in VB so I wouldn't have to write overloads

example

public string GetPath(string root, optional string subroot)
{
   return root + subroot;
}
link|flag
show 1 more comment
vote up 33 vote down

I've always wanted "private" property members, such that you could write:

public int MyProperty
{
    int _myProp = 0;
    get
    {
        return _myProp;
    }
    set
    {
        // Do some fancy set logic
        _myProp = value;
    }
}

Yet I don't want _myProp to have scope outside the property. Therefore I could guarantee that all internal users of the field used the property and therefore used the set logic.

link|flag
1  
From a scoping perspective, this makes more sense to me. After all, from a design perspective, you generally always want to modify the member variable through the property (unless doing so is cost prohibitive). – Mike Hofer Dec 29 '08 at 20:48
2  
You don't always want to use the setter. Sometimes may do extra work that you only care about when called from outside the class. But the ability to add this to your toolbox would be nice. – Joel Coehoorn Feb 5 at 18:43
show 3 more comments
vote up 2 vote down

I would love to see Implicit Interfaces

For example, If I had

public interface IFooable{
    string FooIt();
}

Then any class which implemented a function string FooIt() should automatically be an acceptable IFoo, regardless of whether the class builder had remembered to write class MyClass : IFoo in it's class declaration.

The compiler should be able to infer this, and produce appropriate MSIL while staying completely within the bounds of static typing and without reflection

link|flag
show 9 more comments
vote up 1 vote down

Easier event handling.

VB has had RaiseEvent and Handles, but C# has no equivalent.

C# should have a RaiseEvent keyword that takes care of all of the issues that people have with C# events, like null checking, thread safety (adding/removing handlers while being raised), etc.

Along with Events, I'd like to see Asynchronous events where you can raise an event that's more like a notification ("Hey, BTW, this just happened") but code can continue to execute without waiting for the listeners to finish executing.

link|flag
vote up 2 vote down

Inline regular expressions, like in Perl/javascript. I really like using regular expression, but sometimes it seems a bit excessive to set up a bunch of objects just to do a simple REGEX replace.

link|flag
vote up 0 vote down

Infered interface casting (sort of Duck typing), performed at runtime

See code below. Anything that logically implements and interface without explicitly doing so could be inferred into an interface.

At runtime the compiler can generate a runtime adapter around whatever is passed in or if the cast cannot be completed either throw a cast or inferred cast exception or, as with 'as,' return null.

This would allow less code to be written and allow built in type or types from 3rd Party libraries to be used in a testable fashion.

class Button { public string Text {get; set; } public void Other(){} }

class CustomerLabel { public string Text {get; set; } public Size Width {get; set; } }

interface IHasText { string Text{ get; set;} }

// some other method public void TextDecorator(IHasText item){}

// in use var b = new Button(); TextDecorator(b infer IHasText);

adam

link|flag
vote up 0 vote down

I'd like a 'Singleton' accessor so i could define as class a la 'public singleton class'. I have a generic one i use most of the time but the syntax bugs me. It's a common pattern so why not?

link|flag
1  
I wouldn't say they/re evil, just that they may be able to be replaced by a well-written set of static methods in some cases. – RCIX Jun 27 at 6:08
show 2 more comments
vote up 1 vote down

I want language features that help us write less buggy code.

As others have noted, Spec# (a C# superset research language at Microsoft) has accomplished this by integrating design-by-contract, immutability, pure functions, and non-null types into the language.

Anders, Lippert, C# team: It's high time Spec# gets rolled into C#. It will help us write code with fewer bugs. That's something every developer can get behind.

link|flag
1  
Some aspects of Spec# are making it in to .NET 4.0 with the CodeContract static class. Looking at Microsoft.Contracts.Contract, it's very close to what will be in the CodeContract class. – Scott Dorman Nov 12 '08 at 16:57
show 2 more comments
vote up 22 vote down

A modifier keyword for function argument (or variable/field) definitions that indicates a reference type argument must be non-null.

I have so much null-check code in my apps, it would be awesome to just sweep it all away with a single declaration modifier.

As an example, this:

void MyFunc(Object x, Object y)
{
  if (x == null)
    throw new ArgumentNullException("x");
  if (y == null)
    throw new ArgumentNullException("y");

  // Do stuff...
}

Could become this.

void MyFunc(nonull Object x, nonull Object y)
{
  // Do stuff...
}
link|flag
5  
I don't want a compile-time check, I want a run-time check. I just don't want to have to write the same exact code over and over again, since all that changes is the variable name. The compiler could generate IL to do this for me. – Turbulent Intellect Feb 5 at 22:27
show 7 more comments
vote up 0 vote down

I'd like to see a attribute to type methods that update GUI as threadsafe.

Now we add delegates for all methods called from worker threads that update the gui followed by the pattern if (this.InvokeRequired) then create and invoke delegate (new object {bla}).

To be more productive, something like

[GUISafe] void Foo(int percent) { progressbar.value = percent; }

void WorkerThread() { Foo(15); }

would help a lot.

link|flag
vote up 2 vote down

How about something like anonymous interfaces?

Example:

interface IFoo
{
  int Bar {get;set;}
}

IFoo foo = new IFoo { Bar = 1 };
link|flag
show 1 more comment
vote up 39 vote down

Non Nullable Types:

public void AddItem(string! notNull)
{
  //notNull is never Null;
}

Constraints:

public void SetAge(byte value)
{
   ///? value > 0 && value <= 100;
}

Unit Testing integration:

public string Foo()
{
  string s = "SomeString";
  return s;

  ///? string.isNullOrEmpty(s) == false s.Length >= 5;
}
link|flag
show 4 more comments
vote up 15 vote down

Three things.

  1. Design By Contract Spec#-like features (and I truly hope it will make it to the C# 4.0 in some form)
  2. field contextual keyword within properties Many times I don't want to be able to set a field directly, but only through it's property, even from within the class. Common example would be - I never want the field to be null
public string Name
{
   get {return field;}
   set
   {
      if(value==null)
         throw new ArgumentNullException();
      field = value;
   }
}
  1. Additional feature to Design By Contract - interceprion mechanism baked into the framework So that I can have injected a pre/post call logic to a method. This is however a long shot, and I don't think we will get it... It would be great however if it became a part of the framework, as it could be balzing fast then.
link|flag
show 4 more comments
vote up 1 vote down

I would like a short-circuited version of &=

So this:

bool isValid = true;
isValid = isValid && (obj != null);
isValid = isValid && (obj.IsLoaded);

Could be come this:

bool isValid = true;
isValid &&= (obj != null);
isValid &&= (obj.IsLoaded);
link|flag
show 8 more comments

Your Answer

Get an OpenID
or

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