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