using System.Collections.Generic; namespace Cryville.Common.Collections.Generic { public interface IPairList : IList> { void Add(TKey key, TValue value); void Insert(int index, TKey key, TValue value); } }