将 .NET 3.5 库与应用程序捆绑在一起,以便它可以在仅安装 .NET 2.0 的计算机上运行?

发布于 2024-11-06 21:16:35 字数 226 浏览 10 评论 0原文

我想在仅安装 .NET Framework 2.0 的计算机上使用 LINQ。

我已经读过有关 LINQBridge 的内容。但我不能简单地将“复制本地”设置为引用的程序集,例如System.Core.dllSystem.Xml。 Linq.dll 来获取我需要的功能?

有什么缺点吗?这还被允许吗?

I want to use LINQ on machines with only .NET Framework 2.0 installed.

I've alread read about LINQBridge. But can't I simply set "copy local" to the referenced assemblies like System.Core.dll and System.Xml.Linq.dll to get the functionality I need?

Are there any drawbacks? Is this even allowed?

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

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

发布评论

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

评论(1

梦里泪两行 2024-11-13 21:16:35

.Net 3.5 实际上只是 .Net 2.0 加上一些额外的 dll。没有 3.5 运行时。如果包含所需的 dll,应用程序将毫无问题地运行。

来自以下有关 linq 桥评论的文章: http://www.albahari.com/nutshell/ linqbridge.aspx

首先,了解一下很重要
C# 3.0 和 Framework 3.5 是
设计为与 CLR 2.0 一起使用 - 相同
Framework 2.0 使用的 CLR 版本。
这意味着 C# 3.0 编译器
发出在同一台计算机上运行的 IL 代码
和以前一样的虚拟机。

这使得 Framework 3.5 成为附加的——只是
正如框架 3.0 是
添加剂——包括额外的
增强现有的组件
2.0框架和CLR。所以没有什么可以阻止我们写我们的
自己的程序集来完成以下工作
框架 3.5(至少是关键的
本地 LINQ 查询所需的位)。

编译器然后寻找Where,
OrderBy 和 Select 方法。这
关键是它能找到
适当命名的方法
正确的签名(通常
扩展方法)。但事实并非如此
无论方法来自什么组件
从。 LINQBridge 只是提供
这些方法的另一个来源是
与那些功能相同
在框架3.5中实现
组件。

.Net 3.5 is really just .Net 2.0 with some extra dlls. There is no 3.5 runtime. If you include the dlls you need, the application will run without any problems.

From the following article concerning the linq bridge comment: http://www.albahari.com/nutshell/linqbridge.aspx

First, it's important to understand
that C# 3.0 and Framework 3.5 are
designed to work with CLR 2.0—the same
CLR version that Framework 2.0 uses.
This means that the C# 3.0 compiler
emits IL code that runs on the same
virtual machine as before.

This makes Framework 3.5 additive—just
as Framework 3.0 was
additive—comprising additional
assemblies that enhance the existing
2.0 Framework and CLR. So there's nothing to stop us from writing our
own assemblies that do the work of
Framework 3.5 (at least, the critical
bits required for local LINQ queries).

The compiler then looks for Where,
OrderBy and Select methods. The
critical thing is that it can find
appropriately named methods with the
correct signatures (typically
extension methods). But it doesn't
matter what assembly the methods come
from. LINQBridge simply provides
another source of these methods—that
are functionally identically to those
implemented in the Framework 3.5
assemblies.

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