using System; using System.Collections; using System.Collections.Generic; namespace SRDebugger { public interface IReadOnlyList : IEnumerable, IEnumerable { int Count { get; } T this[int index] { get; } } }