私は[Flags] enum
33個の要素を含まなければならない次のものを持っています:
[Flags]
public enum Types
{
None = 0,
Alarm = 1,
Exit = 2,
Panic = 4,
Fire = 8,
Tamper = 16,
Key = 32,
Line = 64,
FTC = 128,
Unused = 256,
tech_1 = 512,
//... tech_2 through _7 omitted for brevity
tech_8 = 65536,
fire_1 = 131072,
//... fire_2 through _11 omitted for brevity
fire_12 = 268435456,
Key = 536870912,
Exit = 1073741824,
Gas = 2147483648, // Cannot convert source type uint to target type int
}
最後の項目の値が大きすぎるようです。誰もこれを以前に扱ったことがありますか?これを解決/回避する方法はありますか?