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
 
Back
Top