September 25, 2012
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
September 25, 2012
On Tuesday, 25 September 2012 at 02:15:59 UTC, bearophile wrote:
> 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


Thanks for the heads up. Time to give some votes out of my MSDN account.

The #10 F# wish is kind of strange, after all the language already supports generics. I wonder which use cases it would be good for.

--
Paulo