Use DLL In VB.NET

S

shachar

hi all.
is it possible to create dll in vb.net (to share claess
and functions and reuse it code) ?
is it the right way or should i use "Class Project" or
something like that?
thanks.
 
C

Cor Ligthert

Shachar,

It is possible to create a DLL in VBNet, however that is not a direct usable
program, it is in IL code so only usable with dotNet. As you said, as well
for a class project. Just open your GUI from VSNet and do New, project,
Class Libary, they did not make that for nothing.

There is a lot of help on MSDN and under the F1 key.

Cor
 
H

Herfried K. Wagner [MVP]

* "shachar said:
is it possible to create dll in vb.net (to share claess
and functions and reuse it code) ?
is it the right way or should i use "Class Project" or
something like that?

Yep. The "Class Library" is the way to go.
 

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

Similar Threads


Top