using System.Collections; using System.Collections.Generic; namespace ScreenConnect; public interface IOrderedDictionary : IDictionary, ICollection>, IEnumerable>, IEnumerable { TValue this[int index] { get; set; } void Insert(int index, TKey key, TValue value); void RemoveAt(int index); }