Just a performance question ...
Let's say I have 5 classes, and each of them has a link to System.Data and a homegrown library. The 5 classes in question are part of the class library and will eventually be created and published in some web applications as reference information.
Is there any size / performance obtained when using functions that reference System.Data and another library to my own class, so that the number of references to System.Data and my other library is reduced from 5 to 1? Common Sense tells me that it doesn’t matter because the DLLs will be read at the point of one of the functions being executed, so it doesn’t matter where they sit, or how many times you "use System.Data" in your codebase ... but I was wrong earlier:)
source share