Dejan Dakić
Dejan Dakić

Reputation: 2448

Performance hit of multiple assemblies

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

Answers (1)

Darin Dimitrov
Darin Dimitrov

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

Related Questions