namespace Toolkit.Foundation { public interface IReadOnlyIndexDictionary : IReadOnlyDictionary where TKey : notnull { KeyValuePair this[int index] { get; } } }