In my ASP.NET MVC project, I want to make my service classes as a class library.
I want to add a few dlls to my main project.
The dlls that will be added have assembly references on their own. Some of them might are the same, such as System
etc.
Does this architecture effect the main project's performance?
Is only one System
-dll loaded or is it loaded separately for every class library?