C# switch 语句
阅读原文时间:2023年07月15日阅读:2
      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;  
        }

    //    switch (length)  
    //    {  
    //        case 1:

    //            break;  
    //        case 3:

    //            break;  
    //        case 5:

    //            break;  
    //        default:  
    //            data = null;  
    //            return Json(new { msg = "添加失败", success = flag });  
    //    }