How to use a lump of ingredients

i hav created a COM component using vs2005.

Now let me know if I can use the dll I created on vs2005 (which uses f / w 2.0) in vs2003 (which uses f / w 1.1) ??

+1


a source to share


2 answers


I am assuming your real question is humidified or not, you can mix .NET versions in the same application as long as they use COM to interoperate.



I believe the answer is no. An AppDomain can load only one .NET runtime. Multiple execution times are a feature of .NET 4.

+3


a source


In .NET projects, add a link to the "links" branch of the solution, and a directive using

to each file you want to use for this component. In C ++ projects, use the directive import

.



0


a source







All Articles