Enum 可以包含其他 Enum 元素以及它自己的元素吗?
public enum CardSuit
{
spades,
hearts,
diamonds,
clubs
}
public enum GameSuit
{
spades, // These are
hearts, // the same
diamonds, // " CardSuit "
clubs, // elements
suns // " GameSuit " special element
}
我们可以在 GameSuit 中包含 CardSuit 而不需要重复输入相同的元素吗?