What is the proper way to suggest features to be added to the C# language?
For example, I would like to have an operator similar to ?? but for selecting the min or max values.
I'd like a <? b to expand to a < b ? a : b
likewise for >?
|
What is the proper way to suggest features to be added to the C# language? For example, I would like to have an operator similar to I'd like |
|||
| show 2 more comments |
|
Microsoft Connect is the central Hub regarding all suggestions about Microsoft products. Concerning C#, you will have to go through the "Visual Studio and .Net Framework" product and you will end up on the Visual Studio User Voice website where ideas can be submitted. |
|||
|
|
let inline (<?) (a:^t) (b:^t) = if a < b then a else b– ChaosPandion Jan 27 '12 at 21:19