当前位置:Gxlcms > asp.net > C#中的switch case使用介绍

C#中的switch case使用介绍

时间:2021-07-01 10:21:17 帮助过:19人阅读

在C#中
代码如下:

switch(type)
{
case tpye1:
break;
case tpye2:
break;
case tpye3:
break;
case tpye4:
break;
};

其中type可以是数字,也可以是字符串;

人气教程排行