c# (general .net) question about practical use of namespaces?

fsm priest

New member
hard to explain what i mean in the title alone. we wrote a huge application and have several static classes that we use for extension methods and general utility methods. we use these files' namespaces in pretty much every single .cs file in the solution even if we don't use any of the methods contained in the classes.

so my question is this: what are the implications of using namespaces even when you are not using any of the members contained within them? is it a memory or performance issue? if we use a namespace that contains a few hundred extension methods and never use any of them, how does this impact the application?
 
Back
Top