I have a struct which takes 3 named parameters in to the constructor...

public struct MyData
{
    private readonly double _value1;
    private readonly double _value2;
    private readonly double _value3;

    public MyData(
        double value1 = 1.0,
        double value2 = 2.0,
        double value3 = 3.0)
    {
        _value1 = value1;
        _value2 = value2;
        _value3 = value3;
    }
}

The method call that creates the class receives in three nullable doubles which I want to use to create the MyData class only if the nullable doubles are not null...

public MyData CreateMyData(double? value1, double? value2, double? value3)
{
    MyData myData;
    if (value1.HasValue)
    {
        if (value2.HasValue)
        {
            if (value3.HasValue)
            {
                myData = new MyData(value1, value2, value3); 
            }
            else
            {
                myData = new MyData(value1, value2); 
            }
        }
        else
        {
            if (value3.HasValue)
            {
                myData = new MyData(value1, value3: value3); 
            }
            else
            {
                myData = new MyData(value1); 
            }
        }
    }
    else
    {
        if (value2.HasValue)
        {
            if (value3.HasValue)
            {
                myData = new MyData(value2: value2, value3: value3); 
            }
            else
            {
                myData = new MyData(value2: value2); 
            }
        }
        else
        {
            if (value3.HasValue)
            {
                myData = new MyData(value3: value3); 
            }
            else
            {
                myData = new MyData(); 
            }
        }
    }
    return myData;
}

Is there a nicer way to write this method without modifying the MyData class? I.e. Can I conditionally pass named parameters or can I pass an indicator to represent the default named parameter value?

link|improve this question

79% accept rate
2  
Why don't you want to modify MyData? – svick Jun 12 '11 at 14:50
In most situations I would, I just wondered if there was a way to do this without modifying MyData. I ask this just in case I come across a situation where MyData isn't under my control (e.g. 3rd party library or something). – Noob Jun 12 '11 at 16:00
at least for now, most .Net libraries don't use optional parameters. – svick Jun 12 '11 at 16:15
FYI, in your example since MyData is a struct not a class, it's important to note that CreateMyData2(null,null,null) will return MyData with _value1,_value2,_value3 equal to zero. Structs have default constructors no matter what and will take precedence over the optional parameter constructor. – jbtule Jun 15 '11 at 14:43
feedback

5 Answers

up vote 2 down vote accepted
public MyData(
    double? value1 = null,
    double? value2 = null,
    double? value3 = null)
{
    _value1 = value1 ?? 1.0;
    _value2 = value2 ?? 2.0;
    _value3 = value3 ?? 3.0;
}

This way, you can pass the nulls directly and won't suffer from the combinatorial explosion.

Also, if you ever decide to change the defaults, it would work even without recompiling all users of this code.

link|improve this answer
1  
He's asking for a solution that doesn't involve modifying MyData – InBetween Jun 12 '11 at 14:44
@InBetween, ah, I didn't notice that. – svick Jun 12 '11 at 14:50
This is a very interesting answer. If I was creating classes for 3rd party use then, would this be a better way in general to design a class when using named value type parameters? – Noob Jun 12 '11 at 16:04
@Noob, if it was possible that you could change the default values in the future, then absolutely. If that was not the case, then yeah, probably. – svick Jun 12 '11 at 16:13
feedback

Maybe you want just:

return new MyData(value1 ?? 1.0, value2 ?? 2.0, value3 ?? 3.0);

?

link|improve this answer
This way involves the calling method having control of the defaults. I want the responsibility for the defaults to live with the MyData class. This would mean that the defaults in the MyData class can be amended without having to find all references to the MyData class. Thanks for the suggestion though :-) – Noob Jun 12 '11 at 14:26
Well, you can make CreateMyData a static method of MyData (if you are allowed to modify the class). – Vlad Jun 12 '11 at 14:28
2  
@noob: That reason doesn't make sense. Optional and default arguments are resolved at the call site not at the callee's. If you change the default arguments but don't recompile the consumer code together with MyData the consumer code will still call with the original defaults, not the new ones. – InBetween Jun 12 '11 at 14:33
Ah right, that's interesting to know. It would still be nice to have them just defined in the MyData class even if I still had to recompile all references. Thanks very much for telling me about that though, that's something I didn't previously know. – Noob Jun 12 '11 at 15:57
feedback
var t = typeof (MyData);
var c = t.GetConstructor(new Type[] { typeof(double), typeof(double), typeof(double)});
var p = c.GetParameters();
return new MyData(value1 ?? p[0].DefaultValue, value2 ?? p[1].DefaultValue, value3 ?? p[2].DefaultValue);
link|improve this answer
Yep, this is looking like the only alternative to modifying the MyData class or hard coding the defaults in the calling class. – Noob Jun 12 '11 at 15:49
feedback

check this

   public  MyData CreateMyData(double? value1, double? value2, double? value3)
    {
        var ss= typeof(MyData).GetConstructor(new Type[]{typeof(double),typeof(double),typeof(double)});
        var parametesr = ss.GetParameters();
        return new MyData(value1 ?? Convert.ToDouble(parametesr[0].DefaultValue), value2 ?? Convert.ToDouble(parametesr[1].DefaultValue), value3 ?? Convert.ToDouble(parametesr[2].DefaultValue)); 
    }
link|improve this answer
feedback

You need late-binding to do this. The open source framework ImpromptuInterface gives you access to the DLR features needed to dynamically pick named arguments.

using ImpromptuInterface;

...

public MyData CreateMyData(double? value1, double? value2, double? value3)
{
    var arg = InvokeArg.Create;
    var argList = new List<Object>();
    if(value1.HasValue)
        argList.Add(arg("value1",value1));
    if(value2.HasValue)
        argList.Add(arg("value2",value2));
    if(value3.HasValue)
        argList.Add(arg("value3",value3));

    return Impromptu.InvokeConstructor(typeof(MyData), argList.ToArray());
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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