© 2026 Hedgehog Software, LLC
public interface IFoo { public IEnumerable<int> Get(); } public class foo: IFoo { public List<int> Get() { return null; } }
List<int>
IEnumerable<int>