C#学习-枚举(数据类型,适用于某些取值范围有限的数据)
枚举元素默认为int类型,但可以改成其他的整型:long,short.ushort 默认枚举元素的第一个值为0 enum一般与swith-case配合使用 代码:using System;using System.CodeDom;using System.Collections.Generic;using System.Diagnostics.Contracts;using System.Linq;using System.Security.Cryptograph..