namespace PaintDotNet { public interface ISimpleCollection { V Get(K key); void Set(K key, V value); } }