Advertisement
pszczyg

Untitled

Aug 4th, 2016
961
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.20 KB | None | 0 0
  1.  public IEnumerable<string> FindFunc()
  2.  {
  3.     return File.ReadAllLines(_dictionaryPath)
  4.            .Where(word => word.All(_allowedChars.Contains))
  5.            .OrderByDescending(l => l.Length);
  6.  }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement