C# 里面swith的或者
Posted Blogs Wang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# 里面swith的或者相关的知识,希望对你有一定的参考价值。
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的或者的主要内容,如果未能解决你的问题,请参考以下文章