Visual Studio 2010 和 .Net 4 Beta 2
谁能告诉我在.net 3.5上制作的组件是否可以在.net 4.0中工作,我的软件中有许多组件必须使用.net 3.5开发,但整个应用程序必须基于wpf 4,位于 .net 4 框架上。
Can anyone tell me if components made on .net 3.5 can work in .net 4.0, there are a number of components in my software that will have to be developed using .net 3.5, but the whole application must be based on wpf 4, which is on the .net 4 framework.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。您可以在 CLR 4.0 应用程序中使用面向 2.0 CLR (.NET 3.5) 的程序集。
Yes. You can use assemblies targetting the 2.0 CLR (.NET 3.5) within a CLR 4.0 application.
.NET 4 将允许与早期版本的 .NET 进行进程内并行兼容(如果这可以解决您的问题)。
http://msdn.microsoft.com/en- us/library/ee518876%28VS.100%29.aspx
为什么某些组件必须使用.NET 3.5 开发?
.NET 4 will allow in-process side-by-side compatibility with earlier versions of .NET, if that will solve your problem.
http://msdn.microsoft.com/en-us/library/ee518876%28VS.100%29.aspx
Why do some components have to be developed with .NET 3.5?