枚举学习案例

using System;
class EnumExample
{
public enum TimeOfDay :int
{
Morning=0,
Afternoon=1,
Evening=2
}

public static int Main()
{
WriteGreeting(TimeOfDay.Morning);
return 0;
}

static void WriteGreeting(TimeOfDay timeOfDay)
{
switch(timeOfDay)
{
case TimeOfDay.Morning:
Console.WriteLine("Good morning!");
break;
case TimeOfDay.Afternoon:
Console.WriteLine("Good afternoon");
break;
case TimeOfDay.Evening:
Console.WriteLine("Good evening!");
break;
default:
Console.WriteLine("Hello");
break;
}
}}

Published At
Categories with Web编程
Tagged with
comments powered by Disqus