Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. foreach (var file in files)
  2. {
  3.  
  4.  
  5. foreach (DataRow row in keywords.Rows)
  6. {
  7.  
  8. if (!files.Any(f => f.Contains(row.ItemArray[0].ToString())))
  9.  
  10.  
  11. //if (!files.Any(f => f.Contains(keywords.Rows[i])))
  12.  
  13. {
  14. FilesMissing.Add(file);
  15.  
  16.  
  17.  
  18.  
  19. List<string> FileNotCorrect = (from d in FilesMissing select d).Distinct().ToList();
  20. }
  21.  
  22.  
  23.  
  24.  
  25. }
  26.  
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement