コード例 #1
0
 /// <summary>
 /// Delete a file, retrying the operation if the delete fails.
 /// </summary>
 /// <param name="file">
 /// The file to delete.
 /// </param>
 public static void DeleteFileWithRetry(string file)
 {
     PerformActionWithRetry(() => EseInteropTestHelper.FileDelete(file));
 }