我有这些枚举:
private enum FontSizeType
{
XSmall, //9
Small, //12
Medium, //18
Large, //24
XLarge, //36
XXLarge //47
}
private enum AlignOptions
{
Left,
Center,
Right
}
private enum ValueType
{
Text,
Barcode
}
Resharper 的检查告诉我所有这些“从未使用过枚举成员 'XSmall' [等]”
然而,我在组合框中使用它们,如下所示:
comboBoxType1.DataSource = Enum.GetNames(typeof(ValueType));
...那么为什么 Resharper 被愚弄了?或者是吗?