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

C# switch 语句

时间:2018-04-11 18:05:33      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:mysql   bre   sqli   ase   code   dia   一个   log   bsp   

          switch ("MySql") //选择语句  // case语句 成对 结束 执行到 第一个break 
            {
                case "SqlServer2000":
                case "SqlServer2005":
                case "SqlServer2008":
                    this.Close(); //关闭当前窗口
                    Form3 frm = new Form3();
                    frm.ShowDialog();
                    break;
                case "MySql":
                    this.Close();
                    Form3 frm1 = new Form3();
                    frm1.ShowDialog();
                    break;
                case "Sqlite":
                    this.Close();
                    Form3 frm2 = new Form3();
                    frm2.ShowDialog();
                    break;
            }

 

C# switch 语句

标签:mysql   bre   sqli   ase   code   dia   一个   log   bsp   

原文地址:https://www.cnblogs.com/enych/p/8797033.html

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