示例#1
0
        public bool DeleteMail(int id)
        {
            bool res = false;

            try
            {
                db.DeleteMail(id);
                res = true;
            }
            catch (Exception ex)
            {
                RDL.Debug.LogError(ex);
            }
            return(res);
        }