using System.Collections; using System.Collections.Generic; namespace Foodsoft.Alpm { public class FileList : IReadOnlyList { public IEnumerator GetEnumerator() { throw new System.NotImplementedException(); } IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } public int Count { get; } public File this[int index] => throw new System.NotImplementedException(); } }