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.
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.
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:
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:
and instantiate the class:
That's not going to work. Unmanaged DLLs export a
C
interface, not aC++
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.
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.