/// <summary>
 /// Method that executes the action of inserting values into the CSV file.
 /// </summary>
 private void ExecuteUpdateFile()
 {
     try
     {
         InsertColumn insert = new InsertColumn(SelectedFilePath, ColumnHeaderString, ColumnValueString);
         insert.BeginInsertions();
         MessageBoxResult confirmationMessage = MessageBox.Show("The operation completed without error", "Success!", MessageBoxButton.OK, MessageBoxImage.Information);
     }
     catch (Exception e)
     {
         MessageBoxResult errorMessage = MessageBox.Show(e.Message, "ERROR!", MessageBoxButton.OK, MessageBoxImage.Error);
     }
 }