コード例 #1
0
 public DataSet Exist(string uid)
 {
     if (string.IsNullOrEmpty(tableName) || DataMgr == null)
     {
         throw new Exception();
     }
     return(DataMgr.Exist(tableName, uid));
 }