exporting my Dotnet DLL as Native DLL?

E

Elhanan

hi..

i've written a small dll which uses a web service..

this dll needs to be used as a native dll (i.e i could open dependency
walker and see it's functions)

i undersand i could Managed Visual C++ for this but i have no idea
1. how to use csharp assemblies from MC+

2. export the function in Managed C++ as native dll..

could anyone point me to a good resource for this?
 
I

Ignacio Machin \( .NET/ C# MVP \)

Hi,

You cannot export/convert your dll to a native DLL, the best you can do is
make it visible to COM.

Probably you can create a native dll ni MC++ and then make it use your DLL ,
probably like a COM object.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top