Named/Optional parameters in C# 3.0? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T02:39:06Z http://stackoverflow.com/feeds/question/622880 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/622880/named-optional-parameters-in-c-3-0 1 Named/Optional parameters in C# 3.0? Dexter http://stackoverflow.com/users/56555 2009-03-08T01:42:01Z 2009-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#622882 8 Answer by Dustin Campbell for Named/Optional parameters in C# 3.0? Dustin Campbell http://stackoverflow.com/users/56959 2009-03-08T01:44:01Z 2009-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#622884 8 Answer by Andrew Arnott for Named/Optional parameters in C# 3.0? Andrew Arnott http://stackoverflow.com/users/46926 2009-03-08T01:45:00Z 2009-03-08T01:45:00Z <p>There's always method overloading. :)</p> http://stackoverflow.com/questions/622880/named-optional-parameters-in-c-3-0/622886#622886 4 Answer by Andy White for Named/Optional parameters in C# 3.0? Andy White http://stackoverflow.com/users/60096 2009-03-08T01:52:45Z 2009-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#622888 2 Answer by Mystere Man for Named/Optional parameters in C# 3.0? Mystere Man http://stackoverflow.com/users/61164 2009-03-08T01:57:48Z 2009-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#622894 9 Answer by Matt Hamilton for Named/Optional parameters in C# 3.0? Matt Hamilton http://stackoverflow.com/users/615 2009-03-08T02:12:42Z 2009-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&lt;T&gt;(T parameters) { var dict = typeof(T).GetProperties() .ToDictionary(p =&gt; p.Name, p =&gt; 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>