Exemple #1
0
        public static bool IsConnect(string cs, out string msg)
        {
            bool ret = false;

            msg = null;

            try
            {
                ret = CShared.IsConnect(cs, out msg);
            }
            catch (Exception ex) { msg = ex.Message;  ret = false; }
            return(ret);
        }