Setting the default value of a C# Optional Parameter

后端 未结 3 1881
甜味超标
甜味超标 2020-12-01 17:58

Whenever I attempt to set the default value of an optional parameter to something in a resource file, I get a compile-time error of

Default parameter

相关标签:
3条回答
  • 2020-12-01 18:29

    No, you will not be able to make the resource work directly in the default. What you need to do is set the default value to something like null and then do the resource lookup when the parameter has the default value in the body of the method.

    0 讨论(0)
  • 2020-12-01 18:29

    Another option is to split your method into two, and have the one overload call the other, like so:

    public void ValidationError(string fieldName)
    { 
        ValidationError(fieldName, ValidationMessages.ContactNotFound);
    }
    
    public void ValidationError(string fieldName, string message)
    {
        ...
    }
    

    This way also enables you to pass null as a value for message in case that is also a valid value for that parameter.

    0 讨论(0)
  • 2020-12-01 18:39

    One option is to make the default value null and then populate that appropriately:

    public void ValidationError(string fieldName, string message = null)
    {
        string realMessage = message ?? ValidationMessages.ContactNotFound;
        ...
    }
    

    Of course, this only works if you don't want to allow null as a genuine value.

    Another potential option would be to have a pre-build step which created a file full of const strings based on the resources; you could then reference those consts. It would be fairly awkward though.

    0 讨论(0)
提交回复
热议问题