枚举

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication1
{
    class Program
    {enum xingqi
        { 
        星期一,
        星期二,
        星期三=9,
        星期四,
        公司简介sfpoiefskldgfaeiohgaosrhteqaefhwe8thasiofhapefhaspoidfhpaweoif,
        星期六,
        星期天 = 公司简介sfpoiefskldgfaeiohgaosrhteqaefhwe8thasiofhapefhaspoidfhpaweoif,

        }
        
        static void Main(string[] args)
        {
            Console.WriteLine(xingqi.星期六);
            Console.WriteLine((int)xingqi.星期六);
            Console.WriteLine(xingqi.星期天);
            Console.WriteLine((int)xingqi.星期六);
            Console.ReadLine();
        
        
        }
    }
}

枚举,是常量组,有索引,是整数

posted @ 2015-06-19 10:03  蓝瑟黄昏  阅读(103)  评论(0编辑  收藏  举报