/// <summary>
    /// Main method, to run this code example as a standalone application.
    /// </summary>
    /// <param name="args">The command line arguments.</param>
    public static void Main(string[] args) {
      BudgetUtilizationReport codeExample = new BudgetUtilizationReport();
      Console.WriteLine(codeExample.Description);
      try {
        string startDate = "INSERT_START_DATE_HERE";
        string endDate = "INSERT_END_DATE_HERE";
        string fileName = "INSERT_FILE_NAME_HERE";

        codeExample.Run(new AdWordsUser(), startDate, endDate, fileName);
      } catch (Exception e) {
        Console.WriteLine("An exception occurred while running this code example. {0}",
            ExampleUtilities.FormatException(e));
      }
    }