gpt4 book ai didi

c# - 为什么返回类型为IEnumerable 却不能返回List

转载 作者:太空宇宙 更新时间:2023-11-03 20:38:46 24 4
gpt4 key购买 nike

我有:

interface IEntry {}

class Entry : IEntry {}

为什么我做不到?

IEnumerable<IEntry> func()
{
return new List<Entry>();
}

返回的对象不满足所有的类型要求吗?

最佳答案

我相信这只在 .net 4 中可用

在早期版本中,您可以:

using System.Linq;

IEnumerable<IEntry> func()
{
return new List<Entry>().Cast<IEntry>();
}

关于c# - 为什么返回类型为IEnumerable<IEntry> 却不能返回List<Entry>?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3955608/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com