public void IncrementProcessedFileCount() { Interlocked.Increment(ref _processedFileCount); FileCountChanged?.Invoke(this, new EventArgs()); }
private void OnFileCountChanged( ) { FileCountChanged?.Invoke(m_filesCount); }
public void IncrementExtractedFileCount() { Interlocked.Increment(ref _extractedFileCount); FileCountChanged?.Invoke(this, new EventArgs()); }