Skip to content

Instantly share code, notes, and snippets.

@JeremyKuhne
Last active March 8, 2018 06:27
Show Gist options
  • Save JeremyKuhne/5b649ae68673a617a0afb2547e9bf7c8 to your computer and use it in GitHub Desktop.
Save JeremyKuhne/5b649ae68673a617a0afb2547e9bf7c8 to your computer and use it in GitHub Desktop.
File system name enumerable example
IEnumerable<string> fileAndDirectoryNames =
new FileSystemEnumerable<string>(@"C:\", (ref FileSystemEntry entry) => entry.FileName.ToString());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment