Are there any problems associated with using and deploying large DLLs? I'm using a couple of DLLs that's 30Mb and 17Mb in size.
Asked
Active
Viewed 279 times
2 Answers
2
As Mitch says, no.
In fact it is actually recommended by Microsoft to create a smaller number of larger sized assemblies over many small assemblies. This earlier question provides very useful information and references.
In your case you should definitely test the load times and keep the size within acceptable limits, but it seems there are more problems associated with creating numerous small assemblies then a few large ones.