How large can I let one .dll get?

  • Thread starter Thread starter tonicvodka
  • Start date Start date
T

tonicvodka

Hi all!

I'm having some decisive trouble here.

Building a website for a company with a lot of different features using
several different databases, is it bad to build it all under one roof?

My concern is that the dll will get so large, would it be better to
build several small projects, with there own little dlls?

Thanks for all input,
Niclas
 
Building a website for a company with a lot of different features using
several different databases, is it bad to build it all under one roof?

The DLLs won't get very big very fast... but your source code will : )

My concern is that the dll will get so large, would it be better to
build several small projects, with there own little dlls?

Yes, probably - especially if the functions are distinct and isolated. This
way you can use resuse the DLLs in multiple projects.
 

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