Reputation: 2448
I'm writing MVC support but that's not really important.
Right now, I have Business project, which contains infrastructure, application and domain layer with services.
I want to split this Business to, Application, Intrastructure, Domain, Services assemblies.
Is there any significant performance hit if i split my assembly into multiple assembly?
I do not really care about start up, i want to know if there is any difference when assemblies are already loaded
Upvotes: 0
Views: 108
Reputation: 1038710
Is there any significant performance hit if i split my assembly into multiple assembly?
The more assemblies you have, the slower the startup time. But it won't be significant and not something you should be concerned with.
Upvotes: 1