how to create a DLL in VB.NET?

  • Thread starter Thread starter Dexter
  • Start date Start date
D

Dexter

hello all,
I have a class in VB.NET with many functions,
and i want to build a DLL that can to be calling in
a delphi (unmanage code) application.

any know how to make this task?


Thanks


Dexter
 
peak said:
Are these COM objects independant, or will they require the
dotnet framework as well?

No - they are not independent. Only a wrapper is built around the managed
code so that it looks like a COM object to calling COM code. The .NET
framework is still required to execute the managed code.

Imran.
 
There are *apparently* some tools out there that will remove the dependency
and basically build all the classes into your project. I've never used
them. So I can't comment on it but they apparently exist...

I don't know if thats refactoring or what.
 
Back
Top