我已经使用
this helpful post来学习如何将枚举值列表作为参数传递.
现在我想知道我是否可以使这个参数可选?
例:
public enum EnumColors { [Flags] Red = 1,Green = 2,Blue = 4,Black = 8 }
DoSomethingWithColors(EnumColors.Red | EnumColors.Blue)
要么
DoSomethingWithColors()
那我的功能应该是什么样的?
public void DoSomethingWithColors(EnumColors someColors = ??) { ... }