How does a DLL work in .NET

  • Thread starter Thread starter Eelco Uytterhoeven
  • Start date Start date
E

Eelco Uytterhoeven

Hi All,

I've got an easy question (I think). If I make a DLL in .NET, can that
DLL be used by programmers and endusers without the .NET runtime?

Thanks,

Eelco
 
Eelco Uytterhoeven said:
I've got an easy question (I think). If I make a DLL in .NET, can that
DLL be used by programmers and endusers without the .NET runtime?

No. Basically, if you write managed code, you're going to need the .NET
runtime. (There's the Salamander Linker as well, but I don't know
whether that applies to DLLs, and is a bit of an exception to the rule,
really.)
 
Eelco,
I've got an easy question (I think). If I make a DLL in .NET, can that
DLL be used by programmers and endusers without the .NET runtime?

Some kind of CLI runtime must be installed, such as the .NET framework
or Mono.



Mattias
 
No, users need the .NET runtime to make use of it.

Hi All,

I've got an easy question (I think). If I make a DLL in .NET, can that
DLL be used by programmers and endusers without the .NET runtime?

Thanks,

Eelco
 

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