Is there a way to have named arguments like in perl/python

for example

object.method(arg1 => value1, arg2 => value2, arg3 => 0);

in C# prior to C# 4.0?

link|improve this question
1  
There's a C# 2.5? Was this supposed to be 3.5? – C. Ross Nov 10 '09 at 13:56
@C.Ross - you mean C#3.0 ? – Russ Cam Nov 10 '09 at 13:57
.NET 3.5, C# 3.0 ..., it's commonly called "C# 3.5" – C. Ross Nov 10 '09 at 13:59
surely, 3.5, not 2.5 - just mistyped – user207803 Nov 10 '09 at 14:01
3  
@C.Ross - Which is a common mistake! The language spec is for C# 3.0 - msdn.microsoft.com/en-us/vcsharp/aa336809.aspx – Russ Cam Nov 10 '09 at 14:04
show 2 more comments
feedback

2 Answers

method named arguments are C# 4.0 feature. (You can't have method optional parameters in C# < 4.0)

link|improve this answer
feedback

It is not possible before C# 4.0.

BTW, there is no such thing as C# 2.5.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown