vote up 4 vote down star
2
Does this post serve any purpose? This topic has already been discussed on SO. Looks like link spam (sorry if I am wrong) driving traffic to infoq.com. – Jason Jackson Oct 28 '08 at 0:23
I think it is a result of Anders Hejlsberg discussing C# 4 at the Microsoft PDC 2008 being held October 27-30. – dalle Oct 28 '08 at 18:19
Sigh. If you're going to make a discussion question, at least make it wiki. – George Stocker Feb 5 at 22:13

24 Answers

vote up 0 vote down

A lot of languages have them, why not c#?

link|flag
vote up 1 vote down

I think named parameters will dramatically improve code readability. Which is clearer?

SomeFunction(true, true, false);

or

SomeFunction(parameter1 = true, parameter2 = true, parameter3 = false);
link|flag
vote up 1 vote down

Anyone who says no never tried Office Interop

link|flag
vote up 1 vote down

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

link|flag
vote up 0 vote down

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.

link|flag
So, you aren't a fan of switch statements, for loops, or foreach loops? – kitchen May 5 at 21:07
1  
Weeeel, good question. I'll have to think about that some more. To me, optional parameters with default values 'feels' very very similar to overloading. – n8wrl May 6 at 15:42
vote up 1 vote down

Optional parameters in Objective-C really make an already hard to read syntax virtually none readable.

[myclass mymethod: a : biglongparam b:]

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 2 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 1 vote down

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 System.Reflection.Missing.Value fillers when calling COM methods that expect all parameters.

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.
There is no side-effect in terms of performance as the named parameters are resolved at compile time, not runtime like some seem to suggest.

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.

link|flag
vote up 0 vote down

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..

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up -1 vote down

Nice can of worms they just opened, if they for instance support it for virtual methods and for interfaces.

class Base
{
   public virtual void Foo(int a = 1, int b = 2)
   {
   }
}

class Derived1 : Base
{
   // New defaults
   public override void Foo(int a = 3, int b = 4)
   {
   }
}

class Derived2 : Base
{
   // Swapped names
   public override void Foo(int b = 5, int a = 6)
   {
   }
}

Base base1 = new Derived1();
base1.Foo(); // What is the value of a and b?

Base base2 = new Derived2();
base2.Foo(b := 1); // What is the value of a and b?
link|flag
I suppose I'll bite. base1's a and b are 3 and 4; since the method is virtual and the true type is Derived1 that is the method that will be used. base2's a and b will be 1 and 6. You swapped the order, but the name is what matters in method scope. – OwenP Oct 28 '08 at 21:24
Optional parameters get resolved at compile time, hence the static, not the dynamic, type matters. IMHO, this code should be illegal, though. I haven't checked with the current CTP nor with the spec (available yet?) but I think the override qualifier should disallow (different) default values. – Konrad Rudolph Oct 28 '08 at 22:27
1  
Don't do that. Seriously, that is just plain stupid. Defaults should be zero or null. – Jonathan Allen Oct 30 '08 at 8:20
Why should defaults be zero or null? If that is always the case the syntax should be something like: void Foo(optional int a, optional int b). – dalle Oct 30 '08 at 11:44
If they don't want to add optional as a new keyword, then implicit or default would also work as good alternative. – dalle Oct 30 '08 at 11:57
vote up 3 vote down

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.

link|flag
Can I take it you don't work with COM? – Jonathan Allen Oct 28 '08 at 6:07
vote up 6 vote down

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.

link|flag
2  
Sounds like the API is having an identity crisis with its responsibilities – Chris S Apr 30 at 14:46
vote up 14 vote down

Having methods overloading why would someone like to have optional parameters? It honestly makes no sense to me.

link|flag
Do you work with COM? How about dynamic languages? C# developers can't bury their head in the sand and pretend they are the only game in town any more. – Jonathan Allen Oct 28 '08 at 6:04
No, I don't work with COM. And IMO COM interoperability does not justify this "feature". But maybe you are right and I'm not. As long as I can avoid using it, I don't care that much. – Leandro López Oct 28 '08 at 10:18
1  
A lot of C# users have been asking for this feature. Named and optional parameters would help me out with my current project, for example. – Justice Oct 28 '08 at 22:35
5  
Anything that can save me time is OK to me. If optional parameters means I don't have to write 5 overloaded methods that are nothing more than wrappers for a method that takes every parameter, that sounds good to me. – Dan Herbert Dec 27 '08 at 1:07
2  
I use VB.NET, and there are places for both overloading, and optional arguments. Dan's example is a classic case of where optional args results in a far more compact and readable solution. When (but not only when) a method takes different types, overloading is preferable. Having both is good. – ChrisA Dec 27 '08 at 17:35
show 5 more comments
vote up 7 vote down

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 const vs static readonly situation, and it's acceptable as long as people know the implications of both writing and calling methods that have optional parameters, and when to choose between optional parameters and method overloads.

link|flag
Well really that's an engineering issue. It's little different than someone coming along and silently changing the behavior of the function – Andrew Grant Oct 28 '08 at 22:29
1  
I can make the exact same argument for not using overloads, but then we would both be wrong. The truth of the matter is that if you change the default you are going to break code. It doesn't matter if the default is in the client or the library, someone is going to lose. – Jonathan Allen Oct 30 '08 at 8:17
vote up 2 vote down

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.

link|flag
vote up 4 vote down

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)

link|flag
It is part of IL, it has to be so languages can support it. When the language doesn't, then you get C# 3 code complete with a dozen plus "ref missing" arguments. – Jonathan Allen Oct 28 '08 at 6:06
The C# compiler could generate all the overloads and expose them as separate methods to IL - that's what we were supposed to do, after all. That would make reflection a bit awkward, though. – peterchen Oct 28 '08 at 7:34
vote up 2 vote down

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. :)

link|flag
You probably won't with C# code, but you may find yourself using it when calling into code written in a dynamic language. – Jonathan Allen Oct 28 '08 at 6:05
You make a valid point. :) – Greg D Oct 29 '08 at 6:43
vote up 12 vote down

I reckon it adds flexibility, and those wary of gett'n all confused can simply avoid the new feature. One vote 'for'.

link|flag
I am "for", too - but I don't think people who don't like it can "simply avoid it", unless of course they don't use any libraries, and code everything themselves... – peterchen Oct 28 '08 at 0:13
I agree with peterchen. C# has been trying to avoid it for ten years now and it hasn't gotten any easier. – Jonathan Allen Oct 28 '08 at 6:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.