协方差 也在 3.5 / 2.0 中吗?

发布于 2025-01-03 23:18:37 字数 378 浏览 1 评论 0原文

奇怪的问题...

我已经从示例中实现了协方差。

我的目标固件是 4.0。

然而 。我想看看它是否在 3.5 /2 上失败 ->但它不会。

不可能,因为协方差是从 FW4.0 开始的。

在此处输入图像描述

更改为 3.0 后,我构建并查看:(+不会在运行时失败)

在此处输入图像描述

在此处输入图像描述

weird problem...

Ive implemented covariance from example .

My target FW is 4.0.

How ever . I wanted to see if it fails on 3.5 /2 -> but it wont.

It cant be since covariance is from FW4.0.

enter image description here

After changing to 3.0 i Build and see : (+wont fail on runtime)

enter image description here

enter image description here

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

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

发布评论

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

评论(2

樱花坊 2025-01-10 23:18:37

框架 3 支持协方差,但编译器中未实现。您正在使用编译器 4 定位框架 3。Eric

Lippert 博客文章中提到了这一点,我会看看是否能找到它。

编辑

为了进一步澄清:公共语言运行时和 C# 编译器 (csc.exe) 是两个不同的事情。协变和逆变是在 CLR 2.0 版本中引入的。它们直到版本 4 才被引入 C#。您正在使用编译器 4 构建版本 3 IL,这就是它起作用的原因。

Covariance was supported in framework 3, but not implemented in the compiler. You are using compiler 4 targeting framework 3.

This is mentioned in an Eric Lippert blog post, I'll see if I can find it..

EDIT

To further clarify,: The Common Language Runtime and the C# compiler (csc.exe) are two separate things. Covariance and Contravariance where introduced to the CLR at version 2.0. They were not introduced to C# until version 4. You are using Compiler 4 to build version 3 IL which is why it works.

唯憾梦倾城 2025-01-10 23:18:37

CLR 从 2.0 版开始就支持协变和逆变泛型类型参数。只是 C# 语言直到版本 4 才提供任何语法。

The CLR has supported covariant and contravariant generic type parameters since version 2.0. It is just the language C# that didn't provide any syntax for it until version 4.

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