Click here to Skip to main content
15,888,401 members
Articles / .NET

How To Use a .NET 4 Based DLL From .NET 2 Based Application?

Rate me:
Please Sign up or sign in to vote.
4.93/5 (8 votes)
13 Jun 2011Ms-PL4 min read 62K   19   14
How to use a .NET 4 based DLL from .NET 2 based application?

Introduction

The official answer is you can’t. Even with the In-Process Side by Side execution (SxS) feature, introduced in .NET 4.

The SxS feature was intended to be used when COM is involved. For example, if you got an application that loads plugins, like Outlook, and it loads 2 COM plugins, one is using .NET 4 and the other is using .NET 2.0, then it will load two versions of the CLR into the process using the new SxS feature.

What if I simply have a .NET 2 application or DLL that needs to access a .NET 4 DLL?

Personally, I’ve encountered two scenarios when I had to solve this problem:

  1. I had a 3rd party control that would load only in a .NET 3.5 application, but I had to use it in a .NET 4 application.
  2. I wanted to write a plug-in for Windows Live Writer, which must use .NET 2.0, but I needed to use in my plug-in a .NET 4 DLL.

So, What Can We Do If No COM is Involved?

Well, simply add COM to the mixture..

The idea is that you can expose the required classes from your DLL (which uses .NET Framework X) as COM classes (using COM Interop), and then use those classes from your other DLL (which uses .NET Framework Y). Since you are crossing a COM interface, in-process SxS will kick in and work its magic.

Steps to Work Around the Problem

Create a .NET 4 DLL

Suppose we have a .NET 4 DLL which does some .NET 4 functionality. In the attached example, our .NET 4 class prints the CLR version, which should be 4. This DLL is compiled with .NET Framework 4.

C#
using System;
 
 namespace Net4Assembly
 {
     public class MyClass
     {
         public void DoNet4Action()
         {
             Console.WriteLine("CLR version from DLL: {0}", Environment.Version);
         }
     }
 }

Create a .NET 2 EXE

Here, we create a .NET 2 EXE which will eventually call the .NET 4 DLL. Currently, all it does is write its own CLR version.

C#
using System;
 
 namespace Net2Assembly
 {
     class Program
     {
         static void Main(string[] args)
         {
             Console.WriteLine("CLR version from EXE: {0}", Environment.Version);
         }
     }
 }

Create a .NET 4 to .NET 2 Adapter

Here, we create a .NET 4 DLL that exposes the same functionality we need from our original .NET 4 DLL, only it exposes it in a COM-friendly way. In this example, it only needs to delegate the call to the original implementation, but in more advanced scenarios, it should translate the parameters to something more COM friendly. In addition to changing the parameters, the classes also implement interfaces (as required by COM) and are marked with ComVisible and Guid attributes to allow access using COM.

Here is our COM visible interface:

C#
using System;
 using System.Runtime.InteropServices;
 
 namespace Net4ToNet2Adapter
 {
     [ComVisible(true)]
     [Guid("E36BBF07-591E-4959-97AE-D439CBA392FB")]
     public interface IMyClassAdapter
     {
         void DoNet4Action();
     }
 }

And our COM visible class, which delegates its calls to the original class.

C#
using System;
 using System.Runtime.InteropServices;
 using Net4Assembly;
 
 namespace Net4ToNet2Adapter
 {
     [ComVisible(true)]
     [Guid("A6574755-925A-4E41-A01B-B6A0EEF72DF0")]
     public class MyClassAdapter : IMyClassAdapter
     {
         private MyClass _myClass = new MyClass();
 
         public void DoNet4Action()
         {
             _myClass.DoNet4Action();
         }
     }
 }

Note: We could have combined Net4Assembly.MyClass and Net4ToNet2Adapter.MyClassAdapter into the same class but I wanted to keep the example general. In real life application, you often can’t change the original object and thus you are forced to create a wrapper.

Add Support to the Adapter for Registration-free COM Activation

Important note: This part is not really necessary for the .NET 4 to .NET 2 interop to work. But without it, you will need to start using the registry for registering your .NET COM components and most projects would rather avoid it if possible. If this is not a problem, just register your objects in the registry and move to the next step.

To add support for registration-free COM, we need to create two application manifest files.

The first application manifest specifies dependent assemblies for the client executable. Note that since this manifest replaces the default .NET manifest, I’ve added some extra standard manifest stuff (trustinfo), but only the first part is really needed for the registration-free COM to work. To add it, add a file to the client project named app.manifest (“Add new item” –> “Application Manifest”) and change the project properties to use this file.

Following is the content of app.manifest for the Net2Aseembly.exe client in our example:

XML
<?xml version="1.0" encoding="UTF-8" 
standalone="yes"?>
<assembly
  xmlns="urn:schemas-microsoft-com:asm.v1"
  manifestVersion="1.0">
  <assemblyIdentity
    type = "win32"
    name = "Net2Assembly"
    version = "1.0.0.0"
    />
  <dependency>
    <dependentAssembly>
      <assemblyIdentity
        type="win32"
        name="Net4ToNet2Adapter"
        version="1.0.0.0" />
    </dependentAssembly>
  </dependency>

  <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
    <security>
      <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
        <!– UAC Manifest Options
            If you want to change the Windows User Account Control level replace the
            requestedExecutionLevel node with one of the following.

        <requestedExecutionLevel  level="asInvoker" 
        uiAccess="false" />
        <requestedExecutionLevel  level="requireAdministrator" 
        uiAccess="false" />
        <requestedExecutionLevel  level="highestAvailable" 
        uiAccess="false" />

            If you want to utilize File and Registry Virtualization for backward
            compatibility then delete the requestedExecutionLevel node.
        –>
        <requestedExecutionLevel level="asInvoker" 
        uiAccess="false" />
      </requestedPrivileges>
    </security>
  </trustInfo>
</assembly>

The second application manifest describes the COM components which are exposed in the assembly. It needs to be set as the application manifest which resides as a native Win32 resource inside the DLL.

Unfortunately, this can’t be done as easily as the previous manifest. In Visual Studio 2010, the relevant field in the project properties is disabled when the project is of type Class Library. So we must go to the Net4ToNet2Adapter.csproj file and change it ourselves. The change is easy, just add the following lines in the relevant place:

XML
<PropertyGroup>
   <ApplicationManifest>app.manifest</ApplicationManifest>
 </PropertyGroup>

Following is the content of app.manifest for the Net4ToNet2Adapter.dll in our example:

XML
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
  <assemblyIdentity
    type="win32"
    name="Net4ToNet2Adapter"
    version="1.0.0.0" />
  <clrClass
    clsid="{A6574755-925A-4E41-A01B-B6A0EEF72DF0}"
    progid="Net4ToNet2Adapter.MyClassAdapter"
    threadingModel="Both"
    name="Net4ToNet2Adapter.MyClassAdapter"
    runtimeVersion="v4.0.30319"
    />
</assembly>

Use our .NET 4 DLL via COM

Now all you need to do is create an instance of your .NET 4 class from your .NET 2 executable using COM:

C#
using System;
 using Net4ToNet2Adapter;
 
 namespace Net2Assembly
 {
     class Program
     {
         static void Main(string[] args)
         {
             Console.WriteLine("CLR version from EXE: {0}", Environment.Version);
             
             Type myClassAdapterType = Type.GetTypeFromProgID("Net4ToNet2Adapter.MyClassAdapter");
             object myClassAdapterInstance = Activator.CreateInstance(myClassAdapterType);
             IMyClassAdapter myClassAdapter = (IMyClassAdapter)myClassAdapterInstance;
             myClassAdapter.DoNet4Action();
         }
     }
 }

Note: Since the interface IMyClassAdapter should be duplicated in the client, I’ve added the source file IMyClassAdapter.cs as a link to the client project.

The Result

The result of running this simple console application is:

image

I think the image speaks for itself.

I’ve uploaded the full source of this example to the MSDN Code Gallery.

That’s it for now,
Arik Poznanski.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
Software Developer (Senior) Verint
Israel Israel
Arik Poznanski is a senior software developer at Verint. He completed two B.Sc. degrees in Mathematics & Computer Science, summa cum laude, from the Technion in Israel.

Arik has extensive knowledge and experience in many Microsoft technologies, including .NET with C#, WPF, Silverlight, WinForms, Interop, COM/ATL programming, C++ Win32 programming and reverse engineering (assembly, IL).

Comments and Discussions

 
QuestionThrowing Error on running Pin
Member 150625824-Feb-21 16:43
Member 150625824-Feb-21 16:43 
QuestionSource code for example Pin
Member 1171620813-Jul-20 22:49
Member 1171620813-Jul-20 22:49 
QuestionIMyClassAdapter client interface Pin
Member 41714381-Apr-20 21:57
Member 41714381-Apr-20 21:57 
QuestionIs it possible to Use a .NET 4.6.2 Based DLL From a .NET 4 Based Application?!? Pin
yishai.atia11-Mar-18 6:13
yishai.atia11-Mar-18 6:13 
AnswerRe: Is it possible to Use a .NET 4.6.2 Based DLL From a .NET 4 Based Application?!? Pin
Member 150625822-Feb-21 2:07
Member 150625822-Feb-21 2:07 
QuestionError on other machine Pin
Member 1317467131-Jul-17 18:09
Member 1317467131-Jul-17 18:09 
QuestionIs there a vb.net version of the same available. I am unable to convert it to vb.net Pin
Tzan199922-Mar-13 19:26
Tzan199922-Mar-13 19:26 
QuestionError while running the project in Release mode Pin
sanjay Choudhary11-Oct-12 1:28
sanjay Choudhary11-Oct-12 1:28 
QuestionI'm trying to control a 2.0 CLR from a 4.0 CLR Pin
Dinis Cruz19-Jun-12 16:26
Dinis Cruz19-Jun-12 16:26 
QuestionApplying Solution to a Closed Product Pin
Clopen16-Oct-11 3:03
Clopen16-Oct-11 3:03 
AnswerRe: Applying Solution to a Closed Product Pin
Arik Poznanski25-Oct-11 7:00
Arik Poznanski25-Oct-11 7:00 
General5 for you [modified] Pin
MaxS72G20-Jun-11 21:56
MaxS72G20-Jun-11 21:56 
GeneralRe: 5 for you Pin
Arik Poznanski22-Jun-11 7:11
Arik Poznanski22-Jun-11 7:11 
Thanks.

Regarding your question, .NET cleans up after itself.
If you want to be sure, you can always call Marshal.ReleaseComObject or even Marshal.FinalReleaseComObject.
Arik Poznanski

GeneralMy vote of 5 Pin
Shahar Eldad20-Jun-11 19:34
Shahar Eldad20-Jun-11 19:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.