コード例 #1
0
ファイル: UtilSystem.cs プロジェクト: zesus19/c4.v2.T
 public int GetDownloadRev(string tag, int type)
 {
     using (UtilDataAccess utilDataAccess = new UtilDataAccess())
     {
         try
         {
             return utilDataAccess.GetDownloadRev(tag, type);
         }
         catch (Exception ex)
         {
             Util.WriteLog(ex.ToString(), Util.EXCEPTION_LOG_TITLE);
             return 0;
         }
     }
 }