tommy
✅ Difference between `string[]` and `IEnumerable<string>`
what i have gathered from this is that there's a difference in the iteration:
EnumerateDirectories
will iterate over the directories one by one to match a condition's expression, whereas GetDirectories
will iterate over all the files/directories first, provide a string[]
over which we iterate23 replies