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

1 2 3 4 next
vote up 2 vote down

All events should be weak events by default.

Now, if A listens on B, then even noone needs A anymore, existence of B prevents A from being garbage collected.

link|flag
vote up 0 vote down

One thing I've wanted recently is a quick way of doing multiple case statements, esp. in state machine transitions. It would be nice to be able to write:

switch (oldState, newState)
{
    case 0, 1:
        // code for the 0 -> 1 transition;
        break;

    case 0, 2:
        // code for the 0 -> 2 transition;
        break;

    case 0, default:
        // code for other transitions from state 0;
        break;

    case 1, 3:
        // code for the 1 -> 3 transition;
        break;

    case default, 3:
        // code for other transitions to state 3;
        break;

    case default, default:
        // code all for other transitions;
        break;
}

as a shorthand for

switch (oldState)
{
    case 0:
        switch (newState)
        {
            case 1:
                // code for the 0 -> 1 transition;
                break;

            case 2:
                // code for the 0 -> 1 transition;
                break;

            default:
                // code for other transitions from state 0;
                break;
        }
        break;

    case 1:
        switch (newState)
        {
            case 3:
                // code for the 1 -> 3 transition;
                break;

            default:
                // code all for other transitions;
                break;
        }
        break;

    default:
        switch (newState)
        {
            case 3:
                // code for other transitions to state 3;
                break;

            default:
                // code all for other transitions;
                break;
        }
        break;
    }
}

notice that the code run in case default, default occurs in two places in the second example. This is a trivial example and already you get a 50% reduction in code length with hardly any lack of clarity - though you do have to bear in mind that order matters so case 0, default beats case default, 3.

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

It is often (Rightfully) noted that interfaces are not contracts, and constrain nothing but class semantics, not behavior. How about "Contracts" being a combination Of .Net 4.0 CodeContracts Pre And Post Conditions and interface like signature definitions providing for true contracts and truly verifiable code in .Net. What say you?

public Contract IList<T>
{
    Add(T item)
    {
       // Pre and Post Conditions
    }

    int Count {get;}
}
link|flag
vote up 0 vote down

I don't really know the term for this, but I want to be able to do something like this:

static void Main(string[] args){
    string text = args[0] orelse "Hello, world!";
    Console.WriteLine(text);
}

which would be equivialant to this:

static void Main(string[] args){
    string text;
    try {
        text = args[0];
    } catch {
        text = "Hello, world!";
    }
    Console.WriteLine(text);
}

Becuase I've always wished I could apply the ?? operator to arrays, but I can't because going beyond the upper bound in the indexer throws an exception instead of returning null.

link|flag
vote up 1 vote down

Maybe not "most wanted" but it's on my list. Anonymous interface implementation.

For example:

// C#

interface IRunnable
{
    void Run();
}

var runnable = new IRunnable()
{
   public void Run()
   {
      Console.WriteLine("Running...");
      // Do your running
   }
};

runnable.Run();
link|flag
show 1 more comment
vote up 0 vote down

Primative/Struct template unsafe methods.

Example:

private unsafe ModifyStream<T>(byte[] stream) where T : primative/struct
{
    fixed (T* ptr = stream)
    {
        ...
    }
}
link|flag
vote up 1 vote down

It would be nice to be able to declare arrays on the fly similar to javascript:

foreach (int i in [1,4,7,9]) { ... }

I'm not sure how this would work when the array items were of different types. C# could limit the items to being of the same type, or could use the most derived type common to each of the items, boxing if necessary.

link|flag
1  
You could use this syntax : foreach (int i in new []{1,4,7,9}) { } – Romain Verdier Jul 31 at 13:14
vote up 0 vote down

I want enums that don't need to be qualified by Namespace.EnumName when it is clear from the context:

enum E { a, b, c }; 
void Foo(E value) { ... }
void Bar() 
{ 
  Foo(a | b); 
}

That could improve readability of calls to functions like

double Regravitate(string name, double height, bool metric)

double x = Regravitate("kfo", 23.7, true);

to

double x = Regravitate("kfo", 23.7, metric);
link|flag
vote up 2 vote down

I wish I'd be able to create attributes that can be applied to specific class types only. So when I create an attribute I should not only be able specify that it can target to Classes but also the Type of the class to which it can be applied.

creating an attribute that can only be applied to any class that derives from a given class.

Secondly, I should be able force attribute application, If the class derives from a particular given class. So if the class X dervies from class Y, then class X must host a given attribute.

And I want all these to be done via an Attribute only, not by writing logistics in base class or derived class.. It must be inherently supported by the Attribute.

This could be very much helpful when you are developing your own framework.

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

Not particularly of interest, but it would be nice to go

Foo foo = new(bar, "baz");
link|flag
1  
If that is the case then it has no choice to assume you are trying to make exactly what you tell it. (as in, if you tell it Foo and Foo has descendants then it woul make a foo. – RCIX Jun 28 at 7:05
show 1 more comment
vote up 0 vote down

Something to let me use all of the sub-namespaces in a namespace, ideally something like this:

using System.*;
link|flag
1  
If you had that for a namespace I made you would regret it. – Joshua Sep 23 at 20:13
vote up 0 vote down

Indexed properties.

Currently, a (single) indexer can be defined for a class to access data by index, but index parameters cannot be added to individual properties. Something like this:

class Foo
{
  public string this[int index] { get; set; } // indexer
  public string Bar[int index] { get; set; }  // indexed property -- unsupported
}

Foo f;
string a = f[0];     // use class indexer
string b = f.Bar[0]; // use indexed property -- unsupported

Managed C++ and C++/CLI both support indexed properties -- strange that C# does not. This MSDN page describes a somewhat-clumsy workaround for C#: http://msdn.microsoft.com/en-us/library/aa288464(VS.71).aspx

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

Better internal keyword.

Internal now only works at assembly level. I would like to be able to make more specific access restrictions:

  • to restrict access only to types in the same namespace
  • to restrict access only to particular types

Why do I need that? For cleaner encapsulation. I don't want to divide my project into many assemblies, yet I need eg. to have a class that is read-only to the outside, but only special "friend" builder class can modify it. See C# builder pattern

Scala programming language supports this.

link|flag
vote up 9 vote down

Have you ever been annoyed by having to write property or method name in quotes? eg.

// define a rule for Person.Age
var r = new Rule(typeof(Person), "Age", ...)

This is error-prone, and results in run-time errors.

What about?

var r = new Rule(propertyof(Person.Age), ...)

When we have typeof, why not have propertyof and methodof with the same benefits? IL even supports this now, it's just not supported in C#.

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

The ability to declare generics contraints based on methods or properties that the type must implement, without using an interface. I guess that would require duck typing.

Edit: Someone is going to say, "you'll be able to do that with dynamic types", and yes I agree, although the syntax isn't what I was thinking of, it will allow this to work.

Or, alternatively, and almost as useful, the ability to have a where constraint that allows you to specify that a T is one of a set of possible types:

void Foo(T foo) where T : Bar | IFoo, new() { foo.SomeMethodOnIFooAndBar(); }

This wouldn't be a small change. It would take a lot of changes to the CLR and compilers to be able to say that a object can be one out of a set of multiple types. Not to mention the changes required to make intellisense work.

link|flag
vote up 0 vote down

An in-built BIG number type. Or at least something bigger than long (Int64).

Something like Microsoft.Scripting.Math.BigInteger is working for me at the moment (lifted from IronRuby), but I'd LOVE to see something like this built-in!

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

Generic type partial specialization.

link|flag
vote up 4 vote down

Generic constraints against primitive numeric types. For example:

public T SumValues( T first, T second )
  where T : numeric  
 // or alternatively: where T : anyof(int, uint, decimal, float, ...)
 // or alternatively: where T : hasoperators(+,-,etc...)
{
   return first + second;
}
link|flag
vote up 2 vote down

Automatic interface implementation through object delegation. For example:

class MyCustomCollection : IEnumerable
{
   // All methods/properties of IEnumerable delegated to m_Strings
   private List<string> m_Strings provides IEnumerable;
}

instead of:

class MyCustomerCollection : IEnumerable
{
    private List<string> m_Strings;

    IEnumerator IEnumerable.GetEnumerator()
    {
        return m_Strings.GetEnumerator();
    }
}
link|flag
vote up 2 vote down

I would like to see full Microsoft support for C# / .Net / CLR on all popular hardware platforms.

I understand mono does this (and I am very grateful), but having Microsoft directly support the project would be a big deal as well.

link|flag
vote up 1 vote down

Method interception.

Support for custom code on method boundaries would enable us to do the kind of stuff PostSharp is good at, without having an extra tool to post-process the IL.

link|flag
vote up 1 vote down

How about internalised ultra private properties:

The syntax would like a bit like this:

public string MyName
{
   string _myName;
   get
   {
      if(_myName == null) _myname = string.empty;
   }
   set;
}

The idea is that the property can have state and apply rules to it's value, but nothing else in the class can access the real value underneath.

link|flag
vote up 1 vote down

I would like to see nested enums, so that such things will be possible:

var Region = Universum.Milkstreet.SolarSystem.Earth.Euroope.Germany;

Today we use nested structs for such things, but it is not type safe.

link|flag
vote up 1 vote down

A with statement. The .NET framework is great but you end up with alot of long message chains due to the object nature of the framework. Code like this:

int x = myobject.mychild.myppoint.X;

If we had a with...

with(myobject.mychild.mypoint)
{
  int x = X;
}
link|flag
1  
Why? you can always create a one-letter temporary variable, and it won't cost you much typing. – erikkallen Jun 20 at 15:49
show 1 more comment
vote up 2 vote down

I wish there was something similar to the 'in' keyword in SQL, so instead of writing:

if (myobject.MyProperty == MyEnum.Value1 || myobject.MyProperty == MyEnum.Value2)
{
    // do something
}

I can write:

if (myobject.MyProperty in (MyEnum.Value1, MyEnum.Value2))
{
    // do something
}
link|flag
show 3 more comments
vote up 0 vote down

I wish I had this possibility of foreach use:

public static void GenerateReports(DateTime beginDate, DateTime endDate)
{
    foreach(DateTime date between beginDate and endDate)
    {
       GenerateReport(date);
    }
}
link|flag
1  
True, but it's not quite the same. C# needs more "fluent language" keywords in my opinion. – RCIX Jun 27 at 6:10
show 3 more comments
vote up 1 vote down

1

I'd like an inbuilt Exception constructor that takes a string formatter like params object[] for a message.

throw new Exception("Your {0} blew up when opening {1}","Custard.Factory",filename);

2

This is a .NET feature request rather than C#. I'd like to see a DateTime formatting string option that adds 'st,nd,rd' to an English date. They're very easy to write but it means you can't just use the default formatting. e.g.

1st April
2nd February

link|flag
vote up -1 vote down

Being able to enlargen the scope of a getter/setter on a derived class:

public class ReadOnlySomeClass {

   internal ReadOnlyClass(int myProp)
   {
       this.MyProp = myProp;
   }

   public virtual int MyProp { get; protected set; }

}

public class SomeClass : ReadOnlySomeClass {

    internal SomeClass(int myProp) : base(myProp) {}

    public override int MyProp {
       get { return base.MyProp; }
       set { base.MyProp = value; } // is now public.
    }
}
link|flag
show 1 more comment
vote up 1 vote down

Anonymous types should be interfaces instead of sealed classes. It should then be up to the LINQ provider to generate the type as it sees fit.

Then when you do a projection with my LINQ library, I could return an object implementing INotifyPropertyChanged.

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

When an object implements multiple interfaces, and I want to expose both, I'd like to return it in one go. E.g.,:

public {IEnumerable<T>, INotifyCollectionChanged} GetItems()
{
    return new ObservableCollection<T>();
}

var items = GetItems();

Secondly, I'd like the ability to return anonymous types from a method:

public var GetStuff()
{
    return new { Name = "Paul" };
}

There's no reason the compiler couldn't turn that into:

public <>_AnonymousObject923938 GetStuff() ....

As it does with all anonymous type usage.

Lastly, generic type parameter inference works with method calls, but not with constructors, when it should. This should just work:

var kvp = new KeyValuePair(8, "Hello") // KeyValuePair<int, string>
link|flag
show 2 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.