C# 4 is going to have optional parameters. Any thoughts on that?
C# Feature Focus: Optional and Named Parameters, COM Interoperability
|
2
|
C# 4 is going to have optional parameters. Any thoughts on that? C# Feature Focus: Optional and Named Parameters, COM Interoperability |
||||||
|
|
|
A lot of languages have them, why not c#? |
|||
|
|
|
|
I think named parameters will dramatically improve code readability. Which is clearer?
or
|
|||
|
|
|
|
Anyone who says no never tried Office Interop |
||
|
|
|
|
I fully support this. I've had a couple of projects where I have needed to drive Office using C#. For such usage C# is a non starter as too much time is spent wrestling with providing boilerplate code. It is a nightmare. The only sane way to do drive office using .NET us using VB.NET |
||
|
|
|
|
I LOVE the idea of named parameters. I'm on the fence with optional because i can already overload. Not a big fan of two ways to do the same thing in the language. |
||
|
|
Optional parameters in Objective-C really make an already hard to read syntax virtually none readable.
So on that basis I don't like it. I'm guessing most people won't use it though except for its reason-d'etre which is COM interop. |
||
|
|
|
|
The optional parameters and default values are there mainly because of COM interop. They should not be used to replace member overloads as it is not CLS compliant. |
||
|
|
|
|
I find optional parameters very useful in one situation: when I am doing maintenance on a large application. I can quickly add an optional parameter and a bit of code to an existing procedure without breaking the existing calls. BTW, optional parameters or not, I don't think that the same signature will be allowed on a method. |
||
|
|
|
|
I did not like the idea of them when I was using VB6, but was forced into doing so without the ability to overload. I jumped away from them when I started using VB.NET and do not miss them at all now that I am doing nothing but C#. When they are introduced into 4.0, I will not use them personally. I understand the reason that Microsoft is doing - primarily for COM Interop - but I don't do any, so I won't need it for that purpose. |
||
|
|
|
|
I can't wait. I have two classes that are helper functions to create an object that will be condensed from about 20 functions each to 3. This is one of the features I have really been missing. The potential for abuse exists in many language features, you don't want to get rid of (or avoid) features just because someone might use them incorrectly. |
||
|
|
|
|
C# added this as a result of the "dynamic" work they are doing. They added "dynamic" to enable C# programmers to utilize APIs written in Iron Python and Iron Ruby (or more generally for any dynamic language). Because VB, Python, and Ruby all support dynamic parameters, lacking support for optional parameters would adversely impact the ability of C# programers to use "dynamic" apis written in those languages. Once you add support for optional parameters to the "dynamic" type, their really isn't any justification for not enabling them everywhere else. |
||
|
|
|
|
Anders Hejlsberg, the lead architect behind C# talks about the reasons for introducing optional parameters to C# in his presentation about the future of C# at PDC2008 (highly recommended video to watch). The main reason is for COM interoperability: using named parameters allows you to get rid of all the error-prone As always, whether you use this functionality is up to you so I don't really see why people complain: if you don't have -or don't see- a use for it, then don't use it. Again, I think it's a nice feature to have as it can help making code more readable when the purpose of the arguments you pass to methods are not so explicit. |
|||
|
|
|
|
I like the idea as I often find that I'm writing overload methods which are just to handle this, the most common I've found is an email sending library. Without optional parameters you have to make assumptions on what the most common use for your library functions are, and then have overloads to provide default values for them (say dropping CC/ BCC, setting the IsHtml flag, etc). My only worry is how they will be (ab)used by people who don't understand how they actually work under the hood. Such as modifying the default value and releasing the assembly with that in it but not updating the assemblies using the method. Have a look at this blog post if you're wanting to fully follow what I mean.. |
||
|
|
|
|
I love them on VB.NET so now C# users can share the love :) They are so much easier and simplified then overloads, consider them as a shortcut, and use responsible then you'll see they are just useful, nothing else. |
||
|
|
|
|
I don't see this as so much of a dynamic language feature as some have suggested. VB has supported this for a long time, so has C++, and heck, even TSQL stored procs have default (optional) parameters. What's nice about this is you can extend existing code by adding optional parameters that would default to a value for calls that are already tied to the method without modifying the calls themselves. That way, any new calls can override the optional parameter, and the old calls still work. |
||
|
|
|
|
Nice can of worms they just opened, if they for instance support it for virtual methods and for interfaces.
|
||||||||||||
|
|
|
I think it's a bad idea. It removes some of the pain of methods with numerous parameters, which has the effect of encouraging bloated parameter lists. I'd rather have features which encouraged better programming styles. |
||
|
|
|
Happy to see it, if it cuts down on how often I run into 17 overloads of the same method and have to play the guess-which-overload-to-use game. |
||||
|
|
|
Having methods overloading why would someone like to have optional parameters? It honestly makes no sense to me. |
||||||||||||||||
|
|
|
I'm somewhat wary, as if this is done in the usual way of baking the optional parameter's default values into the call site then it can cause versioning issues, because you can change the default value for the parameter while keeping the interface the same, and then clients who were relying on the default being a particular value may change behaviour when upgrading to a newer version of the library. Essentially it's another form of the |
||||||
|
|
|
As a VB.Net developer I run into optional parameters all the time. I have to say, that for the most part I like them. There are instances where they can be abused, but so can any feature. |
||
|
|
|
|
If it works like default parameters in C++, YES! it can make obsolete a lot of boilerplate code that doesn't really help. I never understood the resentment to add them to the language. As I understand it shouldn't be part of IL, because then every language would have to support it - but it could as well be added as language feature. (I've even written a code generator for the overloads, but that makes it easier only if you need many overloads) |
||||
|
|
|
I understand the justification in context with the rest of the features that are being added, especially wrt improved COM interoperability. I don't, personally, see myself using them extensively in new, purely managed code, though. Of course, once they're in front of me, it's entirely possible that I'll just change my mind. :) |
||||
|
|
|
I reckon it adds flexibility, and those wary of gett'n all confused can simply avoid the new feature. One vote 'for'. |
||||
|