Seen on Reddit: the wish list for C#:

http://visualstudio.uservoice.com/forums/121579-visual-studio/category/30931-languages-c-

The wish #2 is to catch multiple exceptions:

try
{
// smth}
catch (RemoteException, NamingException , CreateException e)
{
// smth
}


The wish #15 for C# is nonnullable references, also discussed here:
http://www.reddit.com/r/programming/comments/10eq96/nonnullable_types_vs_c_fixing_the_billion_dollar/

http://twistedoakstudios.com/blog/?p=330

----------------------------

The wish list for F#:
http://visualstudio.uservoice.com/forums/121579-visual-studio/category/30935-languages-f-

The #10 F# wish F# wish is for "Parameterized Modules":
open Module1(p = 100)

Bye,
bearophile

Reply via email to