我正在开发一个面向.NET 3.5的ASP.NET应用程序,我希望在.NET 4.5上构建的bin
目录中包含一个.dll。这有可能吗?
答案 0 :(得分:1)
您必须使用COM Interop来构建桥接层。
using System;
using System.Runtime.InteropServices;
namespace Net4ToNet2Adapter
{
[ComVisible(true)]
[Guid("E36BBF07-591E-4959-97AE-D439CBA392FB")]
public interface IMyClassAdapter
{
void DoNet4Action();
}
}
有关详细信息,请参阅here。