C#之枚举类型变量

using System; namespace proj1 {     class Program     {         enum Color { red=4,green,blue,black=2};  //枚举类型的定义在函数外面         static void Main(String[] args)         {             Color c1, c2, c3;
相关文章
相关标签/搜索