How to create a DLL like win32 API in .Net

  • Thread starter Thread starter Vakkaas
  • Start date Start date
V

Vakkaas

Hi,

Is there a way to create a dll in .Net like win32 API dll's. My concern is
that i want to create DLL's so that other tools like Powerbuilder may be
able to call functions from that dll like they do from win32 api.

Thanks.

Vakkas
 
Not in the normal sense of DLLs that export functions, no. .NET can only
create managed DLLs that can be used from other managed applications.

VC++.NET *can* do this, but it has nothing to do with .NET per se.
 

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

Back
Top