示例#1
0
 /// <summary>
 /// 服务器连接检查
 /// </summary>
 /// <returns></returns>
 public static bool SystemLinkCheck()
 {
     try
     {
         SystemCheck();
         ManagerBll bll = new ManagerBll();
         bll.Exists(0);
         return(true);
     }
     catch (Exception ex)
     {
         return(false);
     }
 }