ISimpleCollection.cs 139 B

12345678
  1. namespace PaintDotNet
  2. {
  3. public interface ISimpleCollection<K, V>
  4. {
  5. V Get(K key);
  6. void Set(K key, V value);
  7. }
  8. }