vote up 1 vote down star

Is there a way to add optional parameters to C# 3.0 like there will be in C# 4.0? I gotta have this feature, I just can't wait!

Edit:

If you know a work-around/hack to accomplish this, post it also. Thanks!

flag

5 Answers

vote up 8 vote down check

Unfortunately, no. You will need the C# 4.0 compiler to support this. If you want optional parameters on the .NET platform today, you can try VB .NET or F#.

link|flag
vote up 8 vote down

There's always method overloading. :)

link|flag
vote up 8 vote down

You can use an anonymous type and reflection as a workaround to named parameters:

public void Foo<T>(T parameters)
{
    var dict = typeof(T).GetProperties()
        .ToDictionary(p => p.Name, 
            p => p.GetValue(parameters, null));

    if (dict.ContainsKey("Message"))
    {
        Console.WriteLine(dict["Message"]);
    }
}

So now I can call Foo like this:

Foo(new { Message = "Hello World" });

... and it will write my message.

Basically I'm extracting all the properties from the anonymous type that was passed, and converting them into a dictionary of string and object (the name of the property and its value).

link|flag
I can't see myself ever actually using this, but it's pretty clever. You could, of course, use a non-anonymous type to avoid the reflection overhead. – Joel Mueller Mar 8 at 2:27
I am going to make sure that I mull over all the cool things that could be done with this before I go back to work on Monday. Very clever! – scwagner Mar 8 at 3:44
+1, Wow, that's pretty cool. – Stefan Steinegger May 7 at 8:45
vote up 4 vote down

Like Dustin said, optional parameters are coming in C# 4.0. One kind of crappy way to simulate optional parameters would be to have an object[] (or more strongly-typed array) as your last argument.

link|flag
Use the 'params' keyword in front of that last object[] argument and you've got something that's easier to call as well. – Andrew Arnott Mar 8 at 1:56
vote up 2 vote down

One could also use variable arguments as option parameters. An example of the way this works is string.Format().

See here:

http://blogs.msdn.com/csharpfaq/archive/2004/05/13/131493.aspx

link|flag

Your Answer

Get an OpenID
or

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