Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

68
votes
4answers
3k views

Why are C# 4 optional parameters defined on interface not enforced on implementing class?

I noticed that with the optional parameters in C# 4 if you specify a parameter as optional on an interface you DON'T have to make that parameter optional on any implementing class: public interface ...
43
votes
7answers
816 views

C# optional parameters on overridden methods

Seems like in .NET Framework there is an issue with optional parameters when you override the method. The output of the code below is: "bbb" "aaa" . But the output I'm expecting is: "bbb" "bbb" .Is ...
27
votes
7answers
53k views

Java optional parameters

How do I use optional parameters in Java? What specification supports optional parameters?
20
votes
6answers
4k views

Should you declare methods using overloads or optional parameters in C# 4.0?

I was watching Anders' talk about C# 4.0 and sneak preview of C# 5.0, and it got me thinking about when optional parameters are available in C# what is going to be the recommended way to declare ...
19
votes
3answers
473 views

Is the new feature of C# 4.0 - “Optional Parameters” CLS-Compliant?

This new feature is really convenient. Lately I read the document of the "Microsoft All-In-One Code Framework", and it mentions that "Optional Parameters" is not CLS-Compliant. So I tested it by ...
19
votes
4answers
1k views

How do I default a parameter to Guid.Empty in C#?

I wish to say: public void Problem(Guid optional = Guid.Empty) { } But the compiler complains that Guid.Empty is not a compile time constant. As I don’t wish to change the API I can’t use: ...
19
votes
10answers
3k views

method overloading vs optional parameter in C# 4.0

which one is better? at a glance optional parameter seems better (less code, less XML documentation, etc), but why do most MSDN library classes use overloading instead of optional parameters? Is ...
19
votes
3answers
2k views

C# 4.0: Can I use a TimeSpan as an optional parameter with a default value?

Both of these generate an error saying they must be a compile-time constant: void Foo(TimeSpan span = TimeSpan.FromSeconds(2.0)) void Foo(TimeSpan span = new TimeSpan(2000)) First of all, can ...
19
votes
5answers
13k views

Ruby optional parameters

If I define a Ruby functions like this: def ldap_get ( base_dn, filter, scope=LDAP::LDAP_SCOPE_SUBTREE, attrs=nil ) How can I call it supplying only the first 2 and the last args? Why isn't ...
18
votes
3answers
3k views

C# 4.0 optional out/ref arguments

Does C# 4.0 allow optional out or ref arguments?
14
votes
2answers
1k views

How to create default value for function argument in Clojure

I come with this: (defn string->integer [str & [base]] (Integer/parseInt str (if (nil? base) 10 base))) (string->integer "10") (string->integer "FF" 16) But it must be a better way to do this.
14
votes
2answers
3k views

Optional parameters for interfaces

Using c# 4.0 -- building an interface and a class that implements the interface. I want to declare an optional parameter in the interface and have it be reflected in the class. So, I have the ...
13
votes
1answer
271 views

Is this an C# 4.0 compiler optional parameters bug?

I'm writing custom security attribute and got strange compiler behaviour... When I'm using the attribute at the same file, default parameter values works fine: using System.Security.Permissions; ...
12
votes
3answers
403 views

avoiding the tedium of optional parameters

If I have a constructor with say 2 required parameters and 4 optional parameters, how can I avoid writing 16 constructors or even the 10 or so constructors I'd have to write if I used default ...
11
votes
6answers
128 views

Why DateTime.MinValue can't be used as optional parameter in C#

I was writing a method which takes DateTime value as one of it's parameters. I decided that it's optional parameter so I went ahead and tried to make DateTime.MinValue as default. private void ...
11
votes
7answers
378 views

Are Options and named default arguments like oil and water in a Scala API?

I'm working on a Scala API (for Twilio, by the way) where operations have a pretty large amount of parameters and many of these have sensible default values. To reduce typing and increase usability, ...
8
votes
2answers
108 views

How do I get interdependent options?

I want to do something like foo[OptionsPattern[]] := OptionValue[b] Options[foo] = {a -> 0, b :> OptionValue[a]}; foo[a -> 1] and have Mathematica give me 1, instead of 0. Is there a ...
8
votes
5answers
129 views

Python - Better to have multiple methods or lots of optional parameters?

I have a class which makes requests to a remote API. I'd like to be able to reduce the number of calls I'm making. Some of the methods in my class make the same API calls (but for different reasons), ...
8
votes
3answers
1k views

Cannot use String.Empty as a default value for an optional parameter in C# - then what's the point?

I am reading Effective C# by Bill Wagner. In Item 14 - Minimize Duplicate Initialization Logic, he shows the following example of using the new optional parameters feature in a constructor: public ...
7
votes
2answers
120 views

Testing optional arguments in PHP

I have a few "setter" methods across classes, and for convenience I've added an optional parameter $previous, which takes an argument by reference and populates it with the existing value before ...
7
votes
6answers
102 views

Is taking advantage of optional parameter edge cases to force implementations of ToString via an interface abuse of the language?

I have an interface IKey which I want to have a method which will return the key as a string. We looked at having a method like this: String GetAsString(); which would return the string ...
7
votes
6answers
474 views

C# Optional Parameters or Method Overload?

Since C# added optional parameters is it considered a better practice to use optional parameters or method overloads or is there a particular case where you would want to use one over the other. i.e a ...
7
votes
8answers
284 views

How do I default a parameter to DateTime.MaxValue in C#?

I wish to say: public void Problem(DateTime optional = DateTime.MaxValue) { } But the compiler complains that DateTime.MaxValue is not a compile time constant. DateTime.MinValue is easy, just use ...
7
votes
2answers
764 views

Optional parameters in managed C++/CLI methods

How can I declare a managed method in C++/CLI that has an optional parameter when used from C#? I've decorated the parameter with both an Optional and a DefaultParameterValue attribute (see: How ...
7
votes
2answers
331 views

How to skip optional parameters in c#

Example: public int foo(int x, int optionalY = 1, int optionalZ = 2) { ... } I'd like to call it like this: int returnVal = foo(5,,8); In other words, I want to provide x and z, but I want to ...
7
votes
2answers
466 views

C# 4.0, optional parameters and params do not work together

How can i create a method that has optional parameters and params together? static void Main(string[] args) { TestOptional("A",C: "D", "E");//this will not build TestOptional("A",C: "D"); ...
7
votes
2answers
252 views

Is the Optional Parameter in C# 4 Backwards Compatible?

I am curious to know that whether optional parameter introduced in C#4 is backward compatible or not? Let me clarify my question with a simple example. Suppose I write the following code in C#4 on ...
7
votes
6answers
1k views

Why optional parameters must appear at the end of the declaration

In all programming languages supporting optional parameters that I have seen there is a imitation that the optional parameters must appear at the end of the declaration. No required parameters may be ...
7
votes
4answers
2k views

How to specify only some optional arguments when calling function in ColdFusion?

I have a ColdFusion function "foo" which takes three args, and the second two are optional: <cffunction name="foo" access="public" returntype="any"> <cfargument name="arg1" type="any" ...
7
votes
3answers
3k views

How would I skip optional arguments in a function call?

OK I totally forgot how to skip arguments in PHP. Lets say I have: checkbox_field ( $name, $value = '', $checked = false, $compare = '', $parameter = '' ) How would I call this function and ...
7
votes
10answers
3k views

Any way to specify optional parameter values in PHP?

Let's say I've got a PHP function foo: function foo($firstName = 'john', $lastName = 'doe') { echo $firstName . " " . $lastName; } // foo(); --> john doe Is there any way to specify only the ...
6
votes
2answers
440 views

Enterprise Architect: C# Optional parameters?

Any option to get Enterprise Architect to recognize optional parameters in C#? I have attempted to import existing code and get the following error: There was an error parsing ...
6
votes
3answers
284 views

Why do optional parameters in C# 4.0 require compile-time constants?

Also is there a way to use run-time values for optional method parameters?
6
votes
5answers
558 views

C# 4.0 - How to Handle Optional String Parameters

This code is not valid: private void Foo(string optionalString = string.Empty) { // do foo. } But this code is: private void Foo(string optionalString = "") { // do foo. } Why? Because ...
6
votes
4answers
621 views

C# Default Parameters

This is, probably, a very simple answer for someone. I have a method with an Optional Parameter like so; public static Email From(string emailAddress, string name = "") { var email = new ...
6
votes
1answer
751 views

OptionalAttribute parameter's default value?

MSDN's VS2010 Named and Optional Arguments (C# Programming Guide) tells us about optional parameters in C#, showing code like I'd expect: public void ExampleMethod(int required ...
6
votes
4answers
964 views

C# 4.0: Can I use a Color as an optional parameter with a default value?

public void log(String msg, Color c = Color.black) { loggerText.ForeColor = c; loggerText.AppendText("\n" + msg); } This results in an error that c must be a ...
6
votes
2answers
233 views

copy constructor with default arguments

As far as I know, the copy constructor must be of the form T(const T&) or T(T&). What if I wanted to add default arguments to the signature? T(const T&, double f = 1.0); Would that be ...
6
votes
2answers
501 views

F#: Why can't I use optional parameters in loose functions?

Why can't I use optional parameters in loose functions defined with "let"? Why are they only allowed in member functions?
5
votes
1answer
100 views

Optional parameters and inheritance

I understand optional parameters, and I quite like them, but I'd just like to know a bit more about using them with an inherited interface. Exhibit A interface IMyInterface { string Get(); ...
5
votes
4answers
100 views

How can method overloading be avoided?

I have the following situation: A constructor takes 6 values. Some of them have default values, some not. #pseudocode# Foo(int a, int b=2, int c=3, int d=4, int e=5, int f){} And I want to be able ...
5
votes
4answers
142 views

Optional delegates in C#

This is a simple example of two extension methods overloads public static class Extended { public static IEnumerable<int> Even(this List<int> numbers) { return ...
5
votes
2answers
1k views

C# 4.0 Optional Parameters - How to Specify Optional Parameter of Type “Guid”?

Here's my method: public void SomeQuery(string email = "", Guid userId = Guid.Empty) { // do some query } userId is giving me an error as it must be a compile-time constant, which i understand. ...
5
votes
3answers
1k views

Why can't typed optional arguments have a default of Null?

In ActionScript 3, when you declare an optional argument by giving it a default value, the value null cannot be used on typed arguments. function Action(Param:int=null){ // 1184: Incompatible ...
4
votes
3answers
62 views

When interface method has no parameters why isn't the implementation recognised of a method with all optional parameters?

I've been playing around with optional parameters and came accross the following scenario. If I have a method on my class where all the parameters are optional I can write the following code: public ...
4
votes
1answer
201 views

Python Option Parser: Boolean flag with optional parameters

I'm using optparse.OptionParser to manage arguments for some scripts, and something I was wondering / would like to do is have boolean flags (i.e action=store_true) that can also accept a parameter. ...
4
votes
6answers
316 views

Default method parameters In C#

How i can make the method have a default values for parameters ?
4
votes
3answers
3k views

How can I use optional parameters in a T-SQL stored procedure?

I am creating a stored procedure to do a search through a table. I have many different search fields, all of which are optional. Is there a way to create a stored procedure that will handle this? ...
4
votes
2answers
154 views

Overload Resolution and Optional Parameters in C# 4

I am working with some code that has seven overloads of a function TraceWrite: void TraceWrite(string Application, LogLevelENUM LogLevel, string Message, string Data = ""); void TraceWrite(string ...
4
votes
2answers
130 views

Optional Specification of some C# Optional Parameters

Suppose you have a method with the following signature: public void SomeMethod(bool foo = false, bool bar = true) { /* ... */ } When calling this method, is there a way to specify a value for bar ...

1 2 3 4