如何在枚举中保留一个枚举列表

可能重复:
枚举标志属性

我在Windows Forms中看到,当您使用包含Anchor的控件时,您可以同时设置多个枚举。

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

enum Foo
{
    A,
    B,
    C
}

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

有可能这样做吗?


使用标志属性。

标志:

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

是的,这是Flags属性。

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


var foo = Foo.A | Foo.B;

这里有更多的信息:[Flags]枚举属性在C#中的含义是什么?

链接地址: http://www.djcxy.com/p/54437.html

上一篇: How to maintain in an enum a list of enums

下一篇: Integer to enum casting in C#