IReadOnlyList`1.cs 245 B

12345678910111213141516
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. namespace SRDebugger
  5. {
  6. public interface IReadOnlyList<T> : IEnumerable<T>, IEnumerable
  7. {
  8. int Count { get; }
  9. T this[int index]
  10. {
  11. get;
  12. }
  13. }
  14. }