BetterExplorer.MainWindow.ExtractToLocation C# (CSharp) Method

ExtractToLocation() private method

private ExtractToLocation ( string archive, string output ) : void
archive string
output string
return void
    private void ExtractToLocation(string archive, string output) {
      var selectedItems = new List<string>() { archive };
      var archiveProcressScreen = new ArchiveProcressScreen(selectedItems, output, ArchiveAction.Extract, "");
      archiveProcressScreen.ExtractionCompleted += new ArchiveProcressScreen.ExtractionCompleteEventHandler(ExtractionHasCompleted);
      AddToLog($"Archive Extracted to {output} from source {archive}");
      archiveProcressScreen.Show();
    }
MainWindow