Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. internal static void RemoveAllSourceFiles()
  2. {
  3. foreach (byte key in taggings.Keys)
  4. {
  5. taggings.Remove(key);
  6. }
  7. }
  8.  
  9. taggings.Clear();
  10.  
  11. internal static void RemoveAllSourceFiles()
  12. {
  13. taggings.Clear();
  14. }
  15.  
  16. var deletionList = (from tag in taggings where <where clause> select tag.Key).ToArray();
  17. foreach(var key in deletionList)
  18. {
  19. taggings.Remove(key);
  20. }
  21.  
  22. while Dict.Count()
  23. clDictObject oBj = Dict.Keys.ElementAt(dict.Count -1);
  24. Dict.Remove(oBj)
  25. end while
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement