Either local or global (GAC / .NET) DLL references, how expensive they are?
For sure we should never reference things we don't use, but for curiosity I ask: Would it be a big performance concern referencing the whole .NET framework?
A similar more practical question would be: Is it worth to combine similar namespaces in projects to minimize the DLL files that need to be referenced (as long as I have to use every code in those DLLs in any case)?
A reference is loaded only when you execute a method, which uses a type from the referenced .dll. So even if you reference the whole .NET framework, it will not be loaded automatically.
And the output: