show/hide this revision's text 5 edited body

All the above, plus

1) implicit generics (why only on methods and not on classes?)

void GenericMethod<T>( T input ) { ... }

//infer type, so
GenericMethod<int>(23); //you don't need the <>
GenericMethod(23);      //is enough

2) simple lambdas with one parameter:

x => x.ToString() //simplify so many calls

3) anon types and initialisers:

//duck-typed: works with any .Add method
var colours = new Dictionary<string, string> {
    { "red", "#ff0000" },
    { "green", "#00ff00" },
    { "blue", "#0000ff" }
};

int[] arrayOfInt = new { 1, 2, 3, 4, 5 };


Another one:

4) Auto properties can have different scopes:

Public 

public int MyId { get; private set; }


Thanks @pzycoman for reminding me:

5) Namespace aliases (not that you're likely to need this particular distinction):

using web = System.Web.UI.WebControls;
using win = System.Windows.Forms;

web::Control aWebControl = new web::Control();
win::Control aFormControl = new win::Control();
    Post Made Community Wiki by Community
show/hide this revision's text 4 Added link to other answer

All the above, plus

1) implicit generics (why only on methods and not on classes?)

void GenericMethod<T>( T input ) { ... }

//infer type, so
GenericMethod<int>(23); //you don't need the <>
GenericMethod(23);      //is enough

2) simple lambdas with one parameter:

x => x.ToString() //simplify so many calls

3) anon types and initialisers:

//duck-typed: works with any .Add method
var colours = new Dictionary<string, string> {
    { "red", "#ff0000" },
    { "green", "#00ff00" },
    { "blue", "#0000ff" }
};

int[] arrayOfInt = new { 1, 2, 3, 4, 5 };


Another one:

4) Auto properties can have different scopes:

Public int MyId { get; private set; }


Thanks @pzycoman for reminding me:

5) Namespace aliases (not that you're likely to need this particular distinction):

using web = System.Web.UI.WebControls;
using win = System.Windows.Forms;

web::Control aWebControl = new web::Control();
win::Control aFormControl = new win::Control();
show/hide this revision's text 3 Added another one
show/hide this revision's text 2 Another one
show/hide this revision's text 1