我有一个这样的枚举:
public enum PromotionTypes
{
Unspecified = 0,
InternalEvent = 1,
ExternalEvent = 2,
GeneralMailing = 3,
VisitBased = 4,
PlayerIntroduction = 5,
Hospitality = 6
}
我想检查这个 Enum 是否包含我给出的数字。例如:当我给 4 时,Enum 包含那个,所以我想返回 True,如果我给 7,那么这个 Enum 中没有 7,所以它返回 False。我试过 Enum.IsDefine 但它只检查字符串值。我怎样才能做到这一点?