CollectionMap.cs 598 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Helper
  6. {
  7. class CollectionMap<TKey, TValue> : Helper.ThreadSafeDictionary<TKey, TValue> where TValue : new()
  8. {
  9. public bool TryAddDefault(TKey key)
  10. {
  11. lock (_impl)
  12. {
  13. if (!_impl.ContainsKey(key))
  14. {
  15. _impl.Add(key, new TValue());
  16. return true;
  17. }
  18. else
  19. {
  20. return false;
  21. }
  22. }
  23. }
  24. }
  25. }