public interface IPersonRepository
{
IEnumerable<Person> GetPeople();
}
Was in the process of learning C# when I came across this method skeleton. Forgive me if this is a silly question, but what is the return type of this method? In other words, what is IEnumerable<Person>?
List, interface, list of interfaces, or something else entirely?