Click here to Skip to main content
15,886,873 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Are DLLs redundant in .NET? Pin
PIEBALDconsult10-Sep-14 11:06
mvePIEBALDconsult10-Sep-14 11:06 
GeneralRe: Are DLLs redundant in .NET? Pin
CatchExAs10-Sep-14 12:43
professionalCatchExAs10-Sep-14 12:43 
GeneralRe: Are DLLs redundant in .NET? Pin
PIEBALDconsult10-Sep-14 15:23
mvePIEBALDconsult10-Sep-14 15:23 
GeneralRe: Are DLLs redundant in .NET? Pin
Dave Kreskowiak10-Sep-14 17:35
mveDave Kreskowiak10-Sep-14 17:35 
GeneralRe: Are DLLs redundant in .NET? Pin
CatchExAs11-Sep-14 2:08
professionalCatchExAs11-Sep-14 2:08 
GeneralRe: Are DLLs redundant in .NET? Pin
Dave Kreskowiak11-Sep-14 2:15
mveDave Kreskowiak11-Sep-14 2:15 
AnswerRe: Are DLLs redundant in .NET? Pin
Rob Philpott11-Sep-14 0:34
Rob Philpott11-Sep-14 0:34 
AnswerRe: Are DLLs redundant in .NET? Pin
George Jonsson23-Sep-14 5:56
professionalGeorge Jonsson23-Sep-14 5:56 
Well, in .Net it is called an assembly, but for your question it has the same function as a DLL or static library in Win32.

An executable is usually a front end that the user executes and it can show a graphical user interface (GUI), a command line console interface or a web interface. An assembly is loaded into memory at run time and used by the executing application.

What you want to achieve with a library/assembly is to compile code that is used over and over again into reusable modules. Look at all the references you add to your exe, they all contain code other people have written and you can reuse.
Another way to reuse is to have compile the source code of the reusable classes into your exe, but that means that you need to have all source code available at all times.
It means that every compilation might give you a slightly different functionality if you share code and someone make some changes in a class. If you use a specific version of an assembly you are pretty sure that you get what you wanted (assuming versions are used)

This was a short explanation that could be much longer, and as an end note I boil it down to this:
1. No DLL's or assemblies are not obsolete.
2. Reuseability is the biggest advantage as I see it.
Questionselect value in dropdownlist Pin
rupali45-Sep-14 1:11
rupali45-Sep-14 1:11 
QuestionIn what version(s) of .NET should a library be released? Pin
Graham Wilson3-Sep-14 9:35
Graham Wilson3-Sep-14 9:35 
AnswerRe: In what version(s) of .NET should a library be released? Pin
Kornfeld Eliyahu Peter3-Sep-14 9:50
professionalKornfeld Eliyahu Peter3-Sep-14 9:50 
AnswerRe: In what version(s) of .NET should a library be released? Pin
Bernhard Hiller3-Sep-14 20:35
Bernhard Hiller3-Sep-14 20:35 
AnswerRe: In what version(s) of .NET should a library be released? Pin
jschell5-Sep-14 9:57
jschell5-Sep-14 9:57 
QuestionMicrosoft Visual Studio running problem. Pin
hansoctantan1-Sep-14 6:46
professionalhansoctantan1-Sep-14 6:46 
AnswerRe: Microsoft Visual Studio running problem. Pin
Richard MacCutchan1-Sep-14 6:56
mveRichard MacCutchan1-Sep-14 6:56 
GeneralRe: Microsoft Visual Studio running problem. Pin
hansoctantan1-Sep-14 7:01
professionalhansoctantan1-Sep-14 7:01 
AnswerRe: Microsoft Visual Studio running problem. Pin
Rob Philpott1-Sep-14 7:03
Rob Philpott1-Sep-14 7:03 
GeneralRe: Microsoft Visual Studio running problem. Pin
hansoctantan1-Sep-14 7:17
professionalhansoctantan1-Sep-14 7:17 
GeneralRe: Microsoft Visual Studio running problem. Pin
Dave Kreskowiak1-Sep-14 7:44
mveDave Kreskowiak1-Sep-14 7:44 
Questionprotecting vb.net dll Pin
Lakshmi Dhivya30-Aug-14 23:02
Lakshmi Dhivya30-Aug-14 23:02 
AnswerRe: protecting vb.net dll Pin
Kornfeld Eliyahu Peter31-Aug-14 0:15
professionalKornfeld Eliyahu Peter31-Aug-14 0:15 
QuestionWhy .NET CLR so slow compared to JVM or Dart or V8 ? Call for help Pin
Antonino Porcino30-Aug-14 5:07
Antonino Porcino30-Aug-14 5:07 
AnswerRe: Why .NET CLR so slow compared to JVM or Dart or V8 ? Call for help Pin
Dave Kreskowiak30-Aug-14 6:10
mveDave Kreskowiak30-Aug-14 6:10 
GeneralRe: Why .NET CLR so slow compared to JVM or Dart or V8 ? Call for help Pin
Antonino Porcino30-Aug-14 6:51
Antonino Porcino30-Aug-14 6:51 
GeneralRe: Why .NET CLR so slow compared to JVM or Dart or V8 ? Call for help Pin
Dave Kreskowiak30-Aug-14 6:53
mveDave Kreskowiak30-Aug-14 6:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.