如何在枚举中维护枚举列表

时间:2012-04-06 17:21:15

标签: c# .net enums

  

可能重复:
  Enum Flags Attribute

我在Windows窗体中看到,当你使用包含Anchor的控件时,你可以同时设置几个枚举。

我试图这样做,但我还没有完成:

enum Foo
{
    A,
    B,
    C
}

Foo foo = A | B;   // here just receive the last one

可以这样做吗?

2 个答案:

答案 0 :(得分:4)

使用Flags attribute

标志:

[Flags]
enum Days2
{
    None = 0x0,
    Sunday = 0x1,
    Monday = 0x2,
    Tuesday = 0x4,
    Wednesday = 0x8,
    Thursday = 0x10,
    Friday = 0x20,
    Saturday = 0x40
}

答案 1 :(得分:1)

是的,这是Flags属性。

[Flags]
enum Foo 
{ 
  A = 1, 
  B = 2, 
  C = 4 
}


var foo = Foo.A | Foo.B;

此处提供更多信息:What does the [Flags] Enum Attribute mean in C#?