The Mask
The Mask

Reputation: 17427

Using DLLImport to import a class

I have an class in dll: For example:

namespace foo {
   public class baa {
      /* ... */
  }
}

how can I imports the baa class from dll? it is possible?

[DllImport(DllName)]
public extern ?? foo() ??

Thanks in advance.

Upvotes: 5

Views: 14654

Answers (3)

kprobst
kprobst

Reputation: 16651

That's a standard C++ export mechanism that only works with C++. You can't import it from C# directly. There are workarounds, like exporting a managed type from a MC++ assembly, use a separate managed wrapper, using COM and a type library or something like that, but you can't use the same import/export mechanism C++ applications use.

Upvotes: 1

Henk Holterman
Henk Holterman

Reputation: 273169

That's not going to work. Unmanaged DLLs export a C interface, not a C++ one. And for managed DLLs (C# or C++/CLI) you simply don't need DllImport.

Only functions that are imported into a static class I'm afraid.

Upvotes: 9

Darin Dimitrov
Darin Dimitrov

Reputation: 1038710

DllImport is used only when you want to invoke unmanaged functions from an unmanaged library (like one written in C++).

When you have a managed .NET assembly you simply add it as reference to your project and use it.

So assuming you have a .NET class library containing the following class:

namespace foo {
   public class baa {
      /* ... */
  }
}

and then you have some other project that needs to use this assembly you go to the References node in the Solution Explorer and Add Reference to the given assembly. Then you bring the namespace into scope:

using foo;

and instantiate the class:

baa b = new baa();
... use the b instance here

Upvotes: 2

Related Questions