Guest User

Untitled

a guest
Nov 19th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. public DirectoryInfo GetFirstDirectoryFrom(params string[] list)
  2. {
  3. return list.Select(l => new DirectoryInfo(l)).SkipWhile(d => !d.Exists).FirstOrDefault();
  4. }
Add Comment
Please, Sign In to add comment