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. The Lounge
  3. Gripe: No, you can keep your 60 tiny DLLs. I'll find another way.

Gripe: No, you can keep your 60 tiny DLLs. I'll find another way.

Scheduled Pinned Locked Moved The Lounge
questioncsharpsysadmin
70 Posts 17 Posters 7 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.
  • honey the codewitchH honey the codewitch

    i think it's a matter of degree. I'd put - for .NET - perfect being somewhere in the neighborhood of 150k and up, assuming generics are being used. Adding, my criticism of the installbase is more from a dev and maintenance perspective. Sometimes there's such thing as overfactoring.

    When I was growin' up, I was the smartest kid I knew. Maybe that was just because I didn't know that many kids. All I know is now I feel the opposite.

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

    codewitch honey crisis wrote:

    i think it's a matter of degree. I'd put - for .NET - perfect being somewhere in the neighborhood of 150k and up, assuming generics are being used. Adding, my criticism of the installbase is more from a dev and maintenance perspective. Sometimes there's such thing as overfactoring.

    Ah, did you expect my perspective to be that of a dairy-farmer? :laugh: Sometimes I preload a DLL by calling a static method that does nothing. Forces the runtime to load the assembly and all its types. It makes life easier. Why would you prefer big executables containing duplicate code over that?

    Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^] "If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.

    honey the codewitchH 1 Reply Last reply
    0
    • L Lost User

      codewitch honey crisis wrote:

      i think it's a matter of degree. I'd put - for .NET - perfect being somewhere in the neighborhood of 150k and up, assuming generics are being used. Adding, my criticism of the installbase is more from a dev and maintenance perspective. Sometimes there's such thing as overfactoring.

      Ah, did you expect my perspective to be that of a dairy-farmer? :laugh: Sometimes I preload a DLL by calling a static method that does nothing. Forces the runtime to load the assembly and all its types. It makes life easier. Why would you prefer big executables containing duplicate code over that?

      Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^] "If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.

      honey the codewitchH Offline
      honey the codewitchH Offline
      honey the codewitch
      wrote on last edited by
      #37

      i meant as opposed to an end user's perspective i just prefer to factor assemblies by related task. i'm not sure what others do. If I find myself with a little bit of redundancy at the source level, I have a mechanism for "includes" in C#. If I find myself with a lot of it, that's where a separate assembly comes in. YMMV I don't see 150k as particularly large. .NET allocates 12 megabytes of heap as its way of saying "hi!"

      When I was growin' up, I was the smartest kid I knew. Maybe that was just because I didn't know that many kids. All I know is now I feel the opposite.

      L 1 Reply Last reply
      0
      • honey the codewitchH honey the codewitch

        which in .NET is basically saying one class deserves its own assembly. I don't know how else to read it at least.

        When I was growin' up, I was the smartest kid I knew. Maybe that was just because I didn't know that many kids. All I know is now I feel the opposite.

        K Offline
        K Offline
        Kevin Marois
        wrote on last edited by
        #38

        Not really. You could have a DAL assembly with multiple DAL classes... one for SQL, one for Oracle, Access, ect. Multiple classes in one assembly. The classes each do one thing - deal with one particular DB, and the assembly does one thing - houses DAL classes. Putting your biz logic in the UI or DAL breaks this pattern. But you could have mutiple BL classes in one assembly

        If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.

        honey the codewitchH 1 Reply Last reply
        0
        • K Kevin Marois

          Not really. You could have a DAL assembly with multiple DAL classes... one for SQL, one for Oracle, Access, ect. Multiple classes in one assembly. The classes each do one thing - deal with one particular DB, and the assembly does one thing - houses DAL classes. Putting your biz logic in the UI or DAL breaks this pattern. But you could have mutiple BL classes in one assembly

          If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.

          honey the codewitchH Offline
          honey the codewitchH Offline
          honey the codewitch
          wrote on last edited by
          #39

          i guess to me those are effectively separate because they are "interface DLLs" - something i mentioned to another commenter as an exemption to my rule of thumb. Sometimes, dependency requirements force us to create DLLs like this, or ones with just base types in them in order to fulfill something like that. but i'd consider each interface its own task, IMO. YMMV a lot of this really depends on which rubber rulers you're using.

          When I was growin' up, I was the smartest kid I knew. Maybe that was just because I didn't know that many kids. All I know is now I feel the opposite.

          1 Reply Last reply
          0
          • honey the codewitchH honey the codewitch

            i meant as opposed to an end user's perspective i just prefer to factor assemblies by related task. i'm not sure what others do. If I find myself with a little bit of redundancy at the source level, I have a mechanism for "includes" in C#. If I find myself with a lot of it, that's where a separate assembly comes in. YMMV I don't see 150k as particularly large. .NET allocates 12 megabytes of heap as its way of saying "hi!"

            When I was growin' up, I was the smartest kid I knew. Maybe that was just because I didn't know that many kids. All I know is now I feel the opposite.

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

            codewitch honey crisis wrote:

            i meant as opposed to an end user's perspective i just prefer to factor assemblies by related task. i'm not sure what others do.

            Others do "whatever works". I've often asked for motivations on behaviour, never get one.

            codewitch honey crisis wrote:

            If I find myself with a little bit of redundancy at the source level, I have a mechanism for "includes" in C#. If I find myself with a lot of it, that's where a separate assembly comes in.

            Assume the programmer to be incompetent, and suddenly the rules that .NET abides to seem logical. If you don't use it, we don't load it. Assume your developers are VB6-fans. And to be honest, as a professional developer, I like it that way.

            Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^] "If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.

            honey the codewitchH 1 Reply Last reply
            0
            • L Lost User

              codewitch honey crisis wrote:

              i meant as opposed to an end user's perspective i just prefer to factor assemblies by related task. i'm not sure what others do.

              Others do "whatever works". I've often asked for motivations on behaviour, never get one.

              codewitch honey crisis wrote:

              If I find myself with a little bit of redundancy at the source level, I have a mechanism for "includes" in C#. If I find myself with a lot of it, that's where a separate assembly comes in.

              Assume the programmer to be incompetent, and suddenly the rules that .NET abides to seem logical. If you don't use it, we don't load it. Assume your developers are VB6-fans. And to be honest, as a professional developer, I like it that way.

              Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^] "If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.

              honey the codewitchH Offline
              honey the codewitchH Offline
              honey the codewitch
              wrote on last edited by
              #41

              I get it, but maybe i'm just more of the Bastard Programmer from Hell than you are :laugh: Props for the reference though. BOFH is legend.

              When I was growin' up, I was the smartest kid I knew. Maybe that was just because I didn't know that many kids. All I know is now I feel the opposite.

              L 1 Reply Last reply
              0
              • honey the codewitchH honey the codewitch

                There are ways to address redundancy that don't lead to overfactoring. Proper factoring can limit redundancy and still not require 60 flipping DLLs If you saw my projects you couldn't level the criticism of them you're leveling. But then I grew up on C++, and the days where programs still had reasonable install bases on them. My DLLs average about 60k to 150k in .NET. Not 16. And I don't have those problems you mention. But then, I also use some tricks to keep the source manageable and the maintenance down.

                When I was growin' up, I was the smartest kid I knew. Maybe that was just because I didn't know that many kids. All I know is now I feel the opposite.

                C Offline
                C Offline
                CodeWraith
                wrote on last edited by
                #42

                codewitch honey crisis wrote:

                If you saw my projects you couldn't level the criticism of them you're leveling.

                That would be nice.

                codewitch honey crisis wrote:

                There are ways to address redundancy that don't lead to overfactoring.

                Yes, but redundancy is the only way out of a circular reference. No compiler plays along with a circular reference for good reasons and if you mix different purposes into one stew in a single assembly, circular references are only one step away if you ever need to separate these concerns afterwards. You are on the safe side when you do that in the first place.

                codewitch honey crisis wrote:

                But then I grew up on C++, and the days where programs still had reasonable install bases on them.

                And I started out on machine code and hex keypads. The scope and ambition of the code I worked on since then has grown constantly. And it's certainly not true that we had no use for the #include preprocessor directive in C or C++. With all benefits and consequences, like the Win32 DLL hell.

                codewitch honey crisis wrote:

                My DLLs average about 60k to 150k in .NET. Not 16. And I don't have those problems you mention.

                Good to hear, but size is still irrelevant. More interesting is if an assembly contains all that is needed, no less and no more. You can't measure adequacy in bytes.

                codewitch honey crisis wrote:

                But then, I also use some tricks to keep the source manageable and the maintenance down.

                Some people prefer to call that architecture. Tricks often are more trouble than they are worth.

                I have lived with several Zen masters - all of them were cats. His last invention was an evil Lasagna. It didn't kill anyone, and it actually tasted pretty good.

                honey the codewitchH 1 Reply Last reply
                0
                • honey the codewitchH honey the codewitch

                  Again, we seem to be arguing semantics, because as I said, I believe an assembly is for a series of tightly coupled tasks. I'd argue a method shouldn't even perform one full task or entity. That's what a class is for. Methods report, and sub-process. A series of classes that perform tightly related tasks are what belong in an assembly. For me that yields assemblies of about 100-150k when using generics, and generally 60k to 100k without them, or with sparse use of them. In the OP I'm talking about a 10th of that per DLL. I find it excessive. You (presumably?) do not. To each their own.

                  When I was growin' up, I was the smartest kid I knew. Maybe that was just because I didn't know that many kids. All I know is now I feel the opposite.

                  C Offline
                  C Offline
                  CodeWraith
                  wrote on last edited by
                  #43

                  codewitch honey crisis wrote:

                  In the OP I'm talking about a 10th of that per DLL. I find it excessive. You (presumably?) do not. To each their own.

                  I simply don't care as long as these assemblies contain what is needed, no more or less. Bundling things without need reduces your flexibility, which may get you in trouble. On the other hand it does not offer any real benefit other than looking nicer.

                  I have lived with several Zen masters - all of them were cats. His last invention was an evil Lasagna. It didn't kill anyone, and it actually tasted pretty good.

                  honey the codewitchH 1 Reply Last reply
                  0
                  • honey the codewitchH honey the codewitch

                    I get it, but maybe i'm just more of the Bastard Programmer from Hell than you are :laugh: Props for the reference though. BOFH is legend.

                    When I was growin' up, I was the smartest kid I knew. Maybe that was just because I didn't know that many kids. All I know is now I feel the opposite.

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

                    codewitch honey crisis wrote:

                    Props for the reference though. BOFH is legend.

                    Tx, meant as a tribute to BOFH. For one to see the reference makes me happy.

                    codewitch honey crisis wrote:

                    I get it, but maybe i'm just more of the Bastard Programmer from Hell than you are :laugh:

                    There's always a master to the master.

                    Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^] "If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.

                    1 Reply Last reply
                    0
                    • honey the codewitchH honey the codewitch

                      What is it with some .NET developers and their desire to segregate their project into a billion different DLLs? Nobody wants to install that. Nobody wants to deal with that. Stop it. Is it a server application? No? Then go soak your head. With a particular side-eye toward MonoTorrent. Edit: I see I'm not alone in this sentiment. I thought I might have been a lone voice in the wilderness here. To the people that disagree, you raise some valid points, but I think context is important - there's a time and a place for lots of DLLs (like server code) and times when it's overdone. I'll cede that if you will.

                      When I was growin' up, I was the smartest kid I knew. Maybe that was just because I didn't know that many kids. All I know is now I feel the opposite.

                      J Offline
                      J Offline
                      Joe Woodbury
                      wrote on last edited by
                      #45

                      Unless something has changed, .NET can handle DLLs in a unidirectional way. That is if DLL A references DLL B, B cannot reference A. Ran into this on a project where most the UI would be in the EXE, some in one DLL and all the non-UI base logic in a third. Then we discovered the above and two DLLs became four. I soon left that train wreck, so I've no idea how it ended up.

                      1 Reply Last reply
                      0
                      • C CodeWraith

                        codewitch honey crisis wrote:

                        In the OP I'm talking about a 10th of that per DLL. I find it excessive. You (presumably?) do not. To each their own.

                        I simply don't care as long as these assemblies contain what is needed, no more or less. Bundling things without need reduces your flexibility, which may get you in trouble. On the other hand it does not offer any real benefit other than looking nicer.

                        I have lived with several Zen masters - all of them were cats. His last invention was an evil Lasagna. It didn't kill anyone, and it actually tasted pretty good.

                        honey the codewitchH Offline
                        honey the codewitchH Offline
                        honey the codewitch
                        wrote on last edited by
                        #46

                        in cases like one click deployment and small self installing packages (like utorrent is or used to be?) it's nice to not have to lug around DLLs. it's also easier to write installers and maintain them when you don't have (like another commenter lamented) 2000 DLLs in a project. Even 60 is a chore. Better to keep it to a few, maybe a dozen for middling-to-large applications. Server code is a different story for a number of reasons.

                        When I was growin' up, I was the smartest kid I knew. Maybe that was just because I didn't know that many kids. All I know is now I feel the opposite.

                        C 1 Reply Last reply
                        0
                        • C CodeWraith

                          codewitch honey crisis wrote:

                          If you saw my projects you couldn't level the criticism of them you're leveling.

                          That would be nice.

                          codewitch honey crisis wrote:

                          There are ways to address redundancy that don't lead to overfactoring.

                          Yes, but redundancy is the only way out of a circular reference. No compiler plays along with a circular reference for good reasons and if you mix different purposes into one stew in a single assembly, circular references are only one step away if you ever need to separate these concerns afterwards. You are on the safe side when you do that in the first place.

                          codewitch honey crisis wrote:

                          But then I grew up on C++, and the days where programs still had reasonable install bases on them.

                          And I started out on machine code and hex keypads. The scope and ambition of the code I worked on since then has grown constantly. And it's certainly not true that we had no use for the #include preprocessor directive in C or C++. With all benefits and consequences, like the Win32 DLL hell.

                          codewitch honey crisis wrote:

                          My DLLs average about 60k to 150k in .NET. Not 16. And I don't have those problems you mention.

                          Good to hear, but size is still irrelevant. More interesting is if an assembly contains all that is needed, no less and no more. You can't measure adequacy in bytes.

                          codewitch honey crisis wrote:

                          But then, I also use some tricks to keep the source manageable and the maintenance down.

                          Some people prefer to call that architecture. Tricks often are more trouble than they are worth.

                          I have lived with several Zen masters - all of them were cats. His last invention was an evil Lasagna. It didn't kill anyone, and it actually tasted pretty good.

                          honey the codewitchH Offline
                          honey the codewitchH Offline
                          honey the codewitch
                          wrote on last edited by
                          #47

                          I'm giving you broad strokes as to how much code is in one. period. Not intended to be a metric of functionality but simply to give an idea of the ballpark of how much code i tend to put into one. Includes are fine if you use them appropriately. Great in some cases.

                          Some people prefer to call that architecture. Tricks often are more trouble than they are worth

                          And how do you know what I mean by tricks? all it is is a shorter way to type technique. Technique is not more trouble than it's worth. I think we're done here. Like I said, we'll have to agree to disagree and we've both said what we needed to say. In any case, I have stuff to work on, I'm not looking to argue endlessly about this.

                          When I was growin' up, I was the smartest kid I knew. Maybe that was just because I didn't know that many kids. All I know is now I feel the opposite.

                          C 1 Reply Last reply
                          0
                          • honey the codewitchH honey the codewitch

                            in cases like one click deployment and small self installing packages (like utorrent is or used to be?) it's nice to not have to lug around DLLs. it's also easier to write installers and maintain them when you don't have (like another commenter lamented) 2000 DLLs in a project. Even 60 is a chore. Better to keep it to a few, maybe a dozen for middling-to-large applications. Server code is a different story for a number of reasons.

                            When I was growin' up, I was the smartest kid I knew. Maybe that was just because I didn't know that many kids. All I know is now I feel the opposite.

                            C Offline
                            C Offline
                            CodeWraith
                            wrote on last edited by
                            #48

                            codewitch honey crisis wrote:

                            Server code is a different story for a number of reasons.

                            Why, actually? A good layered architecture always is a good idea, no matter what it's for or where you want to deploy it. In a way, layers are just another way to separate concerns.

                            I have lived with several Zen masters - all of them were cats. His last invention was an evil Lasagna. It didn't kill anyone, and it actually tasted pretty good.

                            honey the codewitchH 1 Reply Last reply
                            0
                            • C CodeWraith

                              codewitch honey crisis wrote:

                              Server code is a different story for a number of reasons.

                              Why, actually? A good layered architecture always is a good idea, no matter what it's for or where you want to deploy it. In a way, layers are just another way to separate concerns.

                              I have lived with several Zen masters - all of them were cats. His last invention was an evil Lasagna. It didn't kill anyone, and it actually tasted pretty good.

                              honey the codewitchH Offline
                              honey the codewitchH Offline
                              honey the codewitch
                              wrote on last edited by
                              #49

                              because server code is more liable to need hotfixing and this is easier with highly segregated DLL code. And you can architect things and factor them out without putting everything in separate DLLs. because server code doesn't really need things like click-deploy - server code usually has complex deployment in place anyway, so the infrastructure for supporting all those files is already in place. because server code needs to be updated without bringing the server down, which isn't generally an issue in user applications. Classes are for layering. You don't always need DLLs for that.

                              When I was growin' up, I was the smartest kid I knew. Maybe that was just because I didn't know that many kids. All I know is now I feel the opposite.

                              1 Reply Last reply
                              0
                              • honey the codewitchH honey the codewitch

                                I'm giving you broad strokes as to how much code is in one. period. Not intended to be a metric of functionality but simply to give an idea of the ballpark of how much code i tend to put into one. Includes are fine if you use them appropriately. Great in some cases.

                                Some people prefer to call that architecture. Tricks often are more trouble than they are worth

                                And how do you know what I mean by tricks? all it is is a shorter way to type technique. Technique is not more trouble than it's worth. I think we're done here. Like I said, we'll have to agree to disagree and we've both said what we needed to say. In any case, I have stuff to work on, I'm not looking to argue endlessly about this.

                                When I was growin' up, I was the smartest kid I knew. Maybe that was just because I didn't know that many kids. All I know is now I feel the opposite.

                                C Offline
                                C Offline
                                CodeWraith
                                wrote on last edited by
                                #50

                                No need to get angry. Anyway, over here it's already getting late and almost time for bed. The planet is not flat after all. How about a prayer at bedtime:

                                Quote:

                                God, grant me the serenity to accept the things I cannot change, courage to change the things I can, And wisdom to know the difference.

                                Good night!

                                I have lived with several Zen masters - all of them were cats. His last invention was an evil Lasagna. It didn't kill anyone, and it actually tasted pretty good.

                                honey the codewitchH 1 Reply Last reply
                                0
                                • C CodeWraith

                                  No need to get angry. Anyway, over here it's already getting late and almost time for bed. The planet is not flat after all. How about a prayer at bedtime:

                                  Quote:

                                  God, grant me the serenity to accept the things I cannot change, courage to change the things I can, And wisdom to know the difference.

                                  Good night!

                                  I have lived with several Zen masters - all of them were cats. His last invention was an evil Lasagna. It didn't kill anyone, and it actually tasted pretty good.

                                  honey the codewitchH Offline
                                  honey the codewitchH Offline
                                  honey the codewitch
                                  wrote on last edited by
                                  #51

                                  I'm not angry. I'm just done. Good night!

                                  When I was growin' up, I was the smartest kid I knew. Maybe that was just because I didn't know that many kids. All I know is now I feel the opposite.

                                  1 Reply Last reply
                                  0
                                  • honey the codewitchH honey the codewitch

                                    What is it with some .NET developers and their desire to segregate their project into a billion different DLLs? Nobody wants to install that. Nobody wants to deal with that. Stop it. Is it a server application? No? Then go soak your head. With a particular side-eye toward MonoTorrent. Edit: I see I'm not alone in this sentiment. I thought I might have been a lone voice in the wilderness here. To the people that disagree, you raise some valid points, but I think context is important - there's a time and a place for lots of DLLs (like server code) and times when it's overdone. I'll cede that if you will.

                                    When I was growin' up, I was the smartest kid I knew. Maybe that was just because I didn't know that many kids. All I know is now I feel the opposite.

                                    Sander RosselS Offline
                                    Sander RosselS Offline
                                    Sander Rossel
                                    wrote on last edited by
                                    #52

                                    Try front-end development. npm install whatever Your npm folder now has 12641 files for a total of 2.4 MB.

                                    Best, Sander sanderrossel.com Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

                                    1 Reply Last reply
                                    0
                                    • honey the codewitchH honey the codewitch

                                      What is it with some .NET developers and their desire to segregate their project into a billion different DLLs? Nobody wants to install that. Nobody wants to deal with that. Stop it. Is it a server application? No? Then go soak your head. With a particular side-eye toward MonoTorrent. Edit: I see I'm not alone in this sentiment. I thought I might have been a lone voice in the wilderness here. To the people that disagree, you raise some valid points, but I think context is important - there's a time and a place for lots of DLLs (like server code) and times when it's overdone. I'll cede that if you will.

                                      When I was growin' up, I was the smartest kid I knew. Maybe that was just because I didn't know that many kids. All I know is now I feel the opposite.

                                      Richard DeemingR Offline
                                      Richard DeemingR Offline
                                      Richard Deeming
                                      wrote on last edited by
                                      #53

                                      Are you trying to reference a ".NET Standard 2" library from a project targetting a .NET Framework version earlier than 4.7.2? That'll give you lots of tiny support assemblies to provide the "standard" features that weren't available in earlier versions. Changing the project to target 4.7.2 or later should get rid of them. Using .NET Standard with Full Framework .NET - Rick Strahl's Web Log[^]


                                      "These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer

                                      "These people looked deep within my soul and assigned me a number based on the order in which I joined" - Homer

                                      honey the codewitchH 1 Reply Last reply
                                      0
                                      • Richard DeemingR Richard Deeming

                                        Are you trying to reference a ".NET Standard 2" library from a project targetting a .NET Framework version earlier than 4.7.2? That'll give you lots of tiny support assemblies to provide the "standard" features that weren't available in earlier versions. Changing the project to target 4.7.2 or later should get rid of them. Using .NET Standard with Full Framework .NET - Rick Strahl's Web Log[^]


                                        "These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer

                                        honey the codewitchH Offline
                                        honey the codewitchH Offline
                                        honey the codewitch
                                        wrote on last edited by
                                        #54

                                        no, i'm talking about opening a VS solution and having 60 projects in it.

                                        When I was growin' up, I was the smartest kid I knew. Maybe that was just because I didn't know that many kids. All I know is now I feel the opposite.

                                        1 Reply Last reply
                                        0
                                        • honey the codewitchH honey the codewitch

                                          What is it with some .NET developers and their desire to segregate their project into a billion different DLLs? Nobody wants to install that. Nobody wants to deal with that. Stop it. Is it a server application? No? Then go soak your head. With a particular side-eye toward MonoTorrent. Edit: I see I'm not alone in this sentiment. I thought I might have been a lone voice in the wilderness here. To the people that disagree, you raise some valid points, but I think context is important - there's a time and a place for lots of DLLs (like server code) and times when it's overdone. I'll cede that if you will.

                                          When I was growin' up, I was the smartest kid I knew. Maybe that was just because I didn't know that many kids. All I know is now I feel the opposite.

                                          M Offline
                                          M Offline
                                          Matt McGuire
                                          wrote on last edited by
                                          #55

                                          I'm for one or two bigger Dll's, especially if i have multiple exe's accessing the same classes. i don't see the point of beaking a ptoject into tiny pieces, especially when they have to work with each other. I'm still of the mindset to keep my code as small as possible because of many years of updating customer software over Dialup. if the whole compiled project got over 2mb i was doing something wrong and needed to refactor.

                                          honey the codewitchH 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