码迷,mamicode.com
首页 > Windows程序 > 详细

C# 里面swith的或者

时间:2016-03-16 18:57:50      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:

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

namespace testSwith
{
enum Operat
{
Add = 0,
Mod = 1,
Del = 2
}
class Program
{
//有意思的swith
static void Main(string[] args)
{

Operat test1=Operat.Mod;
switch (test1)
{
case Operat.Add:
{
Console.WriteLine("this is Add");
Console.ReadLine();
}
break;
case Operat.Mod:
case Operat.Del:
{
Console.WriteLine("this is Mod and Del");
Console.ReadLine();
}
break;
}
}
}
}

C# 里面swith的或者

标签:

原文地址:http://www.cnblogs.com/Blogs-Wang/p/5284377.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!