DoCheckExistRecord() private method

private DoCheckExistRecord ( string strKey ) : bool
strKey string
return bool
 /// <summary>
 /// 不进行文件比较,只判断是否存在
 /// </summary>
 /// <param name="strKey"></param>
 /// <returns></returns>
 public static bool TryCheckExistRecord(string strKey)
 {
     if (Current == null)
     {
         return(false);
     }
     return(Current.DoCheckExistRecord(strKey));
 }
 /// <summary>
 /// 不进行文件比较,只判断是否存在
 /// </summary>
 /// <param name="strKey"></param>
 /// <returns></returns>
 public static bool TryCheckExistRecord(string strKey)
 {
     if (Current == null)
         return false;
     return Current.DoCheckExistRecord(strKey);
 }