Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. .NET (Core and Framework)
  4. Are DLLs redundant in .NET?

Are DLLs redundant in .NET?

Scheduled Pinned Locked Moved .NET (Core and Framework)
discussioncsharphelpquestion
42 Posts 8 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • D Dave Kreskowiak

    When was the last time you executed unit tests on customer site? I've written seperate tools to diagnose database problems, but never to verify "the code". If the .EXE gets corrupted, chances are good it won't even run, and if it is corrupted, chances are good you've got hardware problems.

    A guide to posting questions on CodeProject

    Click this: Asking questions is a skill. Seriously, do it.
    Dave Kreskowiak

    P Offline
    P Offline
    PIEBALDconsult
    wrote on last edited by
    #27

    I never write or execute unit tests at all, anywhere. I don't have the same concerns as the OP and I don't think we're talking about DLLs shipped with an application, but libraries provided to other developers for use in their applications -- like if I wrote an ISO 8601-compliant date handling library for example, but only distributed the DLL rather than the code. Personally, when I get a DLL from some third-party (an ADO.net provider perhaps) I don't like having to create a Solution and Project, then add a reference just so I can use the Object Explorer to see what's in it. It would be convenient if it were an EXE and running it would provide (version-specific) documentation and such (hopefully more accurate than what's available on the developer's website, if any). Additionally, the Object Explorer only says what's in there, not how to use it, no documentation. I suspect there must already be a tool that allows sort of a command-line Object Explorer, but I haven't looked. Certainly one could be written, but it still wouldn't provide everything that a custom baked-in tool would. Seeing that given a DLL with some (public) class C with a (public) method M that takes a string parameter S and returns a string is all well and good, but wouldn't it be convenient to immediately be able to execute: somelib test C.M "hello world" and have it report the result? Without having to access an IDE and write a simple test app just to see what it does?

    1 Reply Last reply
    0
    • L Lost User

      You can have a static int Test(string[] args) for that (unless you plan on using debug, vs stdout). Call it with the help of a shell-extension or external command that loads the assembly and executes your custom entrypoint :rolleyes:

      Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^]

      P Offline
      P Offline
      PIEBALDconsult
      wrote on last edited by
      #28

      Having a separate console app that loads the Assembly would definitely be another way, but the only reason would be to simply remove the main, I don't see a big benefit.

      C L 2 Replies Last reply
      0
      • L Lost User

        +5 "Let's make a shared library out of that code" "Lets us ILMerge those" :omg: It is also done on the web, where they call it "packaging" or something like it. I wonder how many sites made me download a JQuery library that's already cached in the browser.

        Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^]

        P Offline
        P Offline
        PIEBALDconsult
        wrote on last edited by
        #29

        Oh, you've done SSIS too? :sigh:

        1 Reply Last reply
        0
        • D Dave Kreskowiak

          It's the startup code, import tables, data tables, blah, blah, blah for a Win32 executable, that a .DLL doesn't have, nor need. A .NET assembly in an .EXE is not 100% MSIL code. There is still unmanaged code in there to get the process running under the CLR.

          A guide to posting questions on CodeProject

          Click this: Asking questions is a skill. Seriously, do it.
          Dave Kreskowiak

          P Offline
          P Offline
          PIEBALDconsult
          wrote on last edited by
          #30

          Dave Kreskowiak wrote:

          There is still unmanaged code in there to get the process running under the CLR

          I'd be (at least a little) surprised if that got loaded with the Assembly when referenced in the usual way -- it ought to only affect disk usage except when executed (but then we're talking about Microsoft).

          C 1 Reply Last reply
          0
          • D Dave Kreskowiak

            CatchExAs wrote:

            Or a compiler that bootstraps and tests itself?

            Really? How often do you see that and how often are you going to use it?

            CatchExAs wrote:

            Or an installable that operations can't f*** up?

            Depending on what you mean by "operations", yeah, right. If you're talking about people, there's nothing they can't fuck up and there's always some situation that you're code isn't going to be able to recover from.

            A guide to posting questions on CodeProject

            Click this: Asking questions is a skill. Seriously, do it.
            Dave Kreskowiak

            C Offline
            C Offline
            CatchExAs
            wrote on last edited by
            #31

            Dave Kreskowiak wrote:

            Really? How often do you see that and how often are you going to use it?

            True, you see it rarely. But it is a useful technique to some, and so might be useful to others. You wouldn't know until you tried it.

            Dave Kreskowiak wrote:

            Depending on what you mean by "operations", yeah, right. If you're talking about people, there's nothing they can't f*** up and there's always some situation that you're code isn't going to be able to recover from.

            Of course, which is why we automate things in the first place but the point is that the deployed binary can run tests on itself 'in situ' rather than a test environment which may or may not be representative of the target production environment.

            1 Reply Last reply
            0
            • P PIEBALDconsult

              Having a separate console app that loads the Assembly would definitely be another way, but the only reason would be to simply remove the main, I don't see a big benefit.

              C Offline
              C Offline
              CatchExAs
              wrote on last edited by
              #32

              I was thinking: myProgram.exe -> runs a test suite myProgram.exe /run -> runs a traditional program if implemented or returns if it's a library

              P 1 Reply Last reply
              0
              • P PIEBALDconsult

                Dave Kreskowiak wrote:

                There is still unmanaged code in there to get the process running under the CLR

                I'd be (at least a little) surprised if that got loaded with the Assembly when referenced in the usual way -- it ought to only affect disk usage except when executed (but then we're talking about Microsoft).

                C Offline
                C Offline
                CatchExAs
                wrote on last edited by
                #33

                I just made a rough measure of this empirically: 1 class and 1 method DLL in release mode (4k on disk) vs EXE (5k on disk) 10 classes with 10 methods each in release mode gave DLL (7k on disk) and EXE (8k on disk) So the bloat increases far less than I'd consider to be significant. As for process start and CLR load.... remember we are just loading a library into an existing running CLR.

                P D 2 Replies Last reply
                0
                • C CatchExAs

                  I was thinking: myProgram.exe -> runs a test suite myProgram.exe /run -> runs a traditional program if implemented or returns if it's a library

                  P Offline
                  P Offline
                  PIEBALDconsult
                  wrote on last edited by
                  #34

                  That sounds kinda backward to me.

                  1 Reply Last reply
                  0
                  • C CatchExAs

                    I just made a rough measure of this empirically: 1 class and 1 method DLL in release mode (4k on disk) vs EXE (5k on disk) 10 classes with 10 methods each in release mode gave DLL (7k on disk) and EXE (8k on disk) So the bloat increases far less than I'd consider to be significant. As for process start and CLR load.... remember we are just loading a library into an existing running CLR.

                    P Offline
                    P Offline
                    PIEBALDconsult
                    wrote on last edited by
                    #35

                    I think Dave is also concerned about size in memory (when referenced normally), which is harder to measure.

                    1 Reply Last reply
                    0
                    • C CatchExAs

                      I just made a rough measure of this empirically: 1 class and 1 method DLL in release mode (4k on disk) vs EXE (5k on disk) 10 classes with 10 methods each in release mode gave DLL (7k on disk) and EXE (8k on disk) So the bloat increases far less than I'd consider to be significant. As for process start and CLR load.... remember we are just loading a library into an existing running CLR.

                      D Offline
                      D Offline
                      Dave Kreskowiak
                      wrote on last edited by
                      #36

                      Yeah, you're looking at disk usage, not in memory. If you want an idea of what overhead you're including, look at the Imports table in the .EXE.

                      A guide to posting questions on CodeProject

                      Click this: Asking questions is a skill. Seriously, do it.
                      Dave Kreskowiak

                      C 1 Reply Last reply
                      0
                      • C CatchExAs

                        Whilst prototyping a console app the other day, it stuck me that the dynamically linked library seemed somewhat redundant in .NET and that was nothing I could do with one that could not be achieved by creating an executable. I can add a reference and reuse publically declared types whilst with both. But an executable has some obvious benefits, yet I've always created DLLs because I've been told 'it's best practice' or just followed other's examples. Can anyone think of a technical reason why you'd choose to build a library over an executable? Is a DLL an artefact simply for some legacy backwards compatibility that I'm unaware of? Thoughts?

                        R Offline
                        R Offline
                        Rob Philpott
                        wrote on last edited by
                        #37

                        In a sense there is little difference between dlls and exes from the .NET perspective. I sometimes make code that is designed to be consumed by something (so would normally be a DLL) an .exe to support stand-alone use etc. My main point would be that they are conceptually different things. One is an application, the other is a reusable library. In a normal .NET deployment all your assemblies end up deployed in the same folder. Would you really want 20 .exes which don't do anything when you run them? It is a useful semantic distinction.

                        Regards, Rob Philpott.

                        1 Reply Last reply
                        0
                        • D Dave Kreskowiak

                          Yeah, you're looking at disk usage, not in memory. If you want an idea of what overhead you're including, look at the Imports table in the .EXE.

                          A guide to posting questions on CodeProject

                          Click this: Asking questions is a skill. Seriously, do it.
                          Dave Kreskowiak

                          C Offline
                          C Offline
                          CatchExAs
                          wrote on last edited by
                          #38

                          I've now done the same using perfmon and don't see a significant overhead after taking the difference in process memory size. Can you point to more information on this subject?

                          D 1 Reply Last reply
                          0
                          • C CatchExAs

                            I've now done the same using perfmon and don't see a significant overhead after taking the difference in process memory size. Can you point to more information on this subject?

                            D Offline
                            D Offline
                            Dave Kreskowiak
                            wrote on last edited by
                            #39

                            Windows Internals 6th Edition, Part 1 and 2. Perfmon will only tell you exactly what you're telling it to, and only if the data is interpreted correctly.

                            A guide to posting questions on CodeProject

                            Click this: Asking questions is a skill. Seriously, do it.
                            Dave Kreskowiak

                            1 Reply Last reply
                            0
                            • P PIEBALDconsult

                              Having a separate console app that loads the Assembly would definitely be another way, but the only reason would be to simply remove the main, I don't see a big benefit.

                              L Offline
                              L Offline
                              Lost User
                              wrote on last edited by
                              #40

                              PIEBALDconsult wrote:

                              I don't see a big benefit.

                              You'd be separating the "testing" code from the code being tested. Better yet, put it in your own class, as opposed to the Program class, and get the benefits of inheritance. I can see how one would create an application that executes SQL from the command prompt, and references this as if it is a library to get the appropriate databaseclasses. Then again, you don't want to be referencing a WinApp application from a Webapplication and have it load the complete Forms-environment and all its dependencies.

                              Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^]

                              P 1 Reply Last reply
                              0
                              • L Lost User

                                PIEBALDconsult wrote:

                                I don't see a big benefit.

                                You'd be separating the "testing" code from the code being tested. Better yet, put it in your own class, as opposed to the Program class, and get the benefits of inheritance. I can see how one would create an application that executes SQL from the command prompt, and references this as if it is a library to get the appropriate databaseclasses. Then again, you don't want to be referencing a WinApp application from a Webapplication and have it load the complete Forms-environment and all its dependencies.

                                Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^]

                                P Offline
                                P Offline
                                PIEBALDconsult
                                wrote on last edited by
                                #41

                                Eddy Vluggen wrote:

                                referencing a WinApp application from a Webapplication and have it load the complete Forms-environment and all its dependencies

                                I don't think we're talking about doing anything like that. Just a regular library, but with the ability to self-identify at the console.

                                1 Reply Last reply
                                0
                                • C CatchExAs

                                  Whilst prototyping a console app the other day, it stuck me that the dynamically linked library seemed somewhat redundant in .NET and that was nothing I could do with one that could not be achieved by creating an executable. I can add a reference and reuse publically declared types whilst with both. But an executable has some obvious benefits, yet I've always created DLLs because I've been told 'it's best practice' or just followed other's examples. Can anyone think of a technical reason why you'd choose to build a library over an executable? Is a DLL an artefact simply for some legacy backwards compatibility that I'm unaware of? Thoughts?

                                  G Offline
                                  G Offline
                                  George Jonsson
                                  wrote on last edited by
                                  #42

                                  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.

                                  1 Reply Last reply
                                  0
                                  Reply
                                  • Reply as topic
                                  Log in to reply
                                  • Oldest to Newest
                                  • Newest to Oldest
                                  • Most Votes


                                  • Login

                                  • Don't have an account? Register

                                  • Login or register to search.
                                  • First post
                                    Last post
                                  0
                                  • Categories
                                  • Recent
                                  • Tags
                                  • Popular
                                  • World
                                  • Users
                                  • Groups