diff --git a/csharp/events/Program.cs b/csharp/events/Program.cs index a5cc3ddb071..aa543053885 100644 --- a/csharp/events/Program.cs +++ b/csharp/events/Program.cs @@ -96,7 +96,7 @@ public void Search(string directory, string searchPattern, bool searchSubDirs = { directoryChanged?.Invoke(this, new SearchDirectoryArgs(dir, totalDirs, completedDirs++)); - // Recursively search this child directory: + // Search 'dir' and its subdirectories for files that match the search pattern: SearchDirectory(dir, searchPattern); } // Include the Current Directory: