import dll's

  • Thread starter Thread starter Guest
  • Start date Start date
in reference node (in solution explorer) choose your dll (better whole
project) and then just use using (cs) or import (vb.net) in the head of your
form (other class)
 
Menkaur,

M> How to import my classes implemented in dll's?

Using the compiler from the command line:

csc /r:MyLibAssembly.dll ...

Using Visual Studio: Project | Add Reference.

HTH,

Stefan
 
Back
Top