How to Delete all the Recycle Bin items using CSOM in SharePoint 2013 Online

Code Snippet: 
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Net;  
  5. using System.Security;  
  6. using System.Text;  
  7. using System.Threading.Tasks;  
  8. using Microsoft.SharePoint.Client;  
  9.   
  10. namespace CSOMOffice365  
  11. {  
  12.     class Program  
  13.     {  
  14.         static void Main(string[] args)  
  15.         {  
  16.   
  17.             string userName = "[email protected]";  
  18.   
  19.             Console.WriteLine("Enter your password.");  
  20.             SecureString password = GetPassword();  
  21.   
  22.             // ClienContext - Get the context for the SharePoint Online Site  
  23.             // SharePoint site URL - https://c986.sharepoint.com  
  24.   
  25.             using (var clientContext = new ClientContext("https://c986.sharepoint.com"))  
  26.             {  
  27.                 // SharePoint Online Credentials  
  28.                 clientContext.Credentials = new SharePointOnlineCredentials(userName, password);  
  29.   
  30.                 // Get the SharePoint web  
  31.                 Web web = clientContext.Web;  
  32.   
  33.                 // Delete all the recycle bin items                             
  34.                 web.RecycleBin.DeleteAll();  
  35.   
  36.                 // Execute the query to the server  
  37.                 clientContext.ExecuteQuery();  
  38.   
  39.             }  
  40.         }  
  41.   
  42.         private static SecureString GetPassword()  
  43.         {  
  44.             ConsoleKeyInfo info;  
  45.   
  46.             //Get the user's password as a SecureString  
  47.             SecureString securePassword = new SecureString();  
  48.             do  
  49.             {  
  50.                 info = Console.ReadKey(true);  
  51.                 if (info.Key != ConsoleKey.Enter)  
  52.                 {  
  53.                     securePassword.AppendChar(info.KeyChar);  
  54.                 }  
  55.             }  
  56.             while (info.Key != ConsoleKey.Enter);  
  57.             return securePassword;  
  58.         }  
  59.     }  
  60. }