共/逆变?元组<字符串,IEnumerable<字符串>>对 List 不满意

发布于 2024-11-17 03:07:57 字数 252 浏览 2 评论 0 原文

我无法理解为什么我不能调用具有此签名的方法:

public void Test(Tuple<int, IEnumerable<string>> x);

就像这样:

Test(Tuple.Create(4, new List<string>()))

我认为这与协/逆变有关,但这只是一个猜测。有人可以分享他的聪明才智吗?

I cant wrap my head around why I cant call a method with this signature:

public void Test(Tuple<int, IEnumerable<string>> x);

like that:

Test(Tuple.Create(4, new List<string>()))

I think this has to do with co/contravariance but thats just a guess. Can somebody share his cleverness?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

诗笺 2024-11-24 03:07:57

是的,Tuple 类没有标记为协变或逆变,原因是只有接口可以是协变或逆变。因此类型参数必须完全匹配。 这就是为什么类可以不要协变和逆变

Yes, the Tuple class is not marked as co- or contravariant, the reason being only interfaces can be co- or contravariant. So the type parameters have to match exactly. Here's the reason why classes can't be co- and contravariant.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文