Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This question already has an answer here:

    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 compile-time constant. I've read up on this a little and most examples are dealing with strings and ints. I've figured out I can use the colorconverter class but I'm not sure it will be very efficient. Is there a way to just pass a basic color as an optional parameter?

    public void log(String msg, String c = "Black")
    {
        ColorConverter conv = new ColorConverter();
        Color color = (Color)conv.ConvertFromString(c);

        loggerText.ForeColor = color;
        loggerText.AppendText("\n" + msg);
    }
share|improve this question

marked as duplicate by nawfal, Jesse, c4p, hugh, Camilo Martin May 16 at 13:49

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

up vote 19 down vote accepted

I've run into this as well and the only workaround I've found is to use nullables.

public void log(String msg, Color? c = null)
{
    loggerText.ForeColor = c.HasValue ? c.Value : Color.Black;
    loggerText.AppendText("\n" + msg);
}
share|improve this answer
2  
You can also use default(Color) as a default value - but sometimes this can make it impossible to differentiate a default value from a valid parameter value. Nullable tend to be better in this case. – LBushkin May 10 '10 at 16:31
@Bushkin: i totally agree with this! – Simon May 10 '10 at 16:32

You could check if Color is Color.Empty (which is the default value: default(Color)) or use a nullable value and check for null.

public void log(String msg, Color? c = null) { ... }
share|improve this answer

Don't specify the colour. Supply an "error level" instead, and have a mapping between each error level and a colour value. That way 0 and below could be black, then 1 = amber, >2 = red. No need to worry about default values and/or not specifying a value.

share|improve this answer
+1 Emphasize the what, not the how. – Bryan Watts May 10 '10 at 16:38
Completely disagree - apart from not answering the question, this introduces a new semantic "error level" which then makes this method less useful across different applications (what if I want warnings to be orange in one application and yellow in another). – Justicle Sep 25 '11 at 21:52
@Justicle: Stylesheets? – Simon Svensson May 15 '12 at 3:17

Usage suggestion:

public GraphicsLine(Point startPoint, Point endPoint, Color? color = null, double width = 1.0)
{
    StartPoint = startPoint;
    EndPoint = endPoint;
    Color = color ?? Colors.Black;
    Width = width;
}
share|improve this answer

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