特定于 .Net 版本的 DLL?
当您将 .Net 程序作为已编译的 .EXE 发布时,它特定于特定版本的 .Net(以及 Mono 的相应版本) - 不是“4.0 或更高版本”,而是确切的 4.0。
这同样适用于编译的 DLL 吗?
假设您的程序需要一些第三方库,您将其作为 DLL 提供。如果您想升级程序以使用更高版本的 .Net/Mono,是否还必须构建或获取相应更新版本的 DLL?
When you ship a .Net program as a compiled .EXE, it's specific to a particular version of .Net (and corresponding version of Mono) - not e.g. "4.0 or later" but exactly 4.0.
Does the same applied to compiled DLLs?
Suppose your program needs some third-party libraries, which you ship as DLLs. If you then want to upgrade your program to use a later version of .Net/Mono, do you have to build or acquire correspondingly updated versions of the DLLs also?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.NET 的每个新版本都可以引用旧版本中创建的程序集(所有 BCL 程序集除外)。
您不需要获取更新版本的第三方库。
例如,如果使用 .NET 4 构建项目,则可以引用使用 .NET 3.5(MyAssembly.dll 版本 1.0.0.0)创建的库,但不能引用 System.Xml.dll 版本 3.5.0.0。您必须引用 System.Xml.dll 版本 4.0.0.0
Every new version of .NET can reference assemblies created in older version except all the BCL assemblies.
You dont need to acquire newer versions of third-party libraries.
For example if you build a project with .NET 4 you can reference a library created with .NET 3.5 (MyAssembly.dll version 1.0.0.0) but you cannot reference System.Xml.dll version 3.5.0.0. You will have to reference System.Xml.dll version 4.0.0.0