Named/Optional parameters in C# 3.0? - Stack Overflow most recent 30 from stackoverflow.com2010-03-21T02:39:06Zhttp://stackoverflow.com/feeds/question/622880http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/622880/named-optional-parameters-in-c-3-01Named/Optional parameters in C# 3.0?Dexterhttp://stackoverflow.com/users/565552009-03-08T01:42:01Z2009-03-08T02:12:42Z
<p>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!</p>
<p><b>Edit:</b></p>
<p>If you know a work-around/hack to accomplish this, post it also. Thanks!</p>
http://stackoverflow.com/questions/622880/named-optional-parameters-in-c-3-0/622882#6228828Answer by Dustin Campbell for Named/Optional parameters in C# 3.0?Dustin Campbellhttp://stackoverflow.com/users/569592009-03-08T01:44:01Z2009-03-08T01:44:01Z<p>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#.</p>
http://stackoverflow.com/questions/622880/named-optional-parameters-in-c-3-0/622884#6228848Answer by Andrew Arnott for Named/Optional parameters in C# 3.0?Andrew Arnotthttp://stackoverflow.com/users/469262009-03-08T01:45:00Z2009-03-08T01:45:00Z<p>There's always method overloading. :)</p>
http://stackoverflow.com/questions/622880/named-optional-parameters-in-c-3-0/622886#6228864Answer by Andy White for Named/Optional parameters in C# 3.0?Andy Whitehttp://stackoverflow.com/users/600962009-03-08T01:52:45Z2009-03-08T01:52:45Z<p>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.</p>
http://stackoverflow.com/questions/622880/named-optional-parameters-in-c-3-0/622888#6228882Answer by Mystere Man for Named/Optional parameters in C# 3.0?Mystere Manhttp://stackoverflow.com/users/611642009-03-08T01:57:48Z2009-03-08T01:57:48Z<p>One could also use variable arguments as option parameters. An example of the way this works is string.Format().</p>
<p>See here:</p>
<p><a href="http://blogs.msdn.com/csharpfaq/archive/2004/05/13/131493.aspx" rel="nofollow">http://blogs.msdn.com/csharpfaq/archive/2004/05/13/131493.aspx</a></p>
http://stackoverflow.com/questions/622880/named-optional-parameters-in-c-3-0/622894#6228949Answer by Matt Hamilton for Named/Optional parameters in C# 3.0?Matt Hamiltonhttp://stackoverflow.com/users/6152009-03-08T02:12:42Z2009-03-08T02:12:42Z<p>You can use an anonymous type and reflection as a workaround to named parameters:</p>
<pre><code>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"]);
}
}
</code></pre>
<p>So now I can call Foo like this:</p>
<pre><code>Foo(new { Message = "Hello World" });
</code></pre>
<p>... and it will write my message.</p>
<p>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).</p>