定写
C#中的switch用法总结(原创)--王超C#
C#中的switch⽤法总结(原创)--王超C# switch()switch函数用法举例switch(var){case var1:code;break;case var2:code;break;...default:code;break;}执⾏完⼀个case,不能跳转到另⼀个case;每个case代码都要有break;string i="a";switch(i){case"a":Console...
C#中的switch⽤法总结(原创)--王超C# switch()switch函数用法举例switch(var){case var1:code;break;case var2:code;break;...default:code;break;}执⾏完⼀个case,不能跳转到另⼀个case;每个case代码都要有break;string i="a";switch(i){case"a":Console...