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的或者的主要内容,如果未能解决你的问题,请参考以下文章

c#里面使textbox里面只能输入数字,或者小数点的代码

C# Winform下,datagridview或者ListView能够自定义模板吗?

c#中 如何用listview显示图片

c# panel里面的内容超出怎么自动出现滚动条

在VS里面用C#实现对Excel表的操作

c# 如何判断textBox.Text内容是不是符合文件或者文件夹命名规则?