Just wondering what the cost is of unused Using directives. I'm enjoying using Resharper to remove them, but I hope to gain a bit of a performance boost as well.
Closed as duplicate of Why should you remove unnecessary C# using directives?
|
1
|
Closed as duplicate of Why should you remove unnecessary C# using directives?
|
|||
|
closed as exact duplicate by Blair Conrad Nov 10 '08 at 14:00 |
|
|
You won't find any - by the time the code is compiled, all this has been sorted out and the types that are used by the file are known. Compiling might be infinitesimally quicker, but the biggest gain is the warm glow of removing code. The using directives don't actually pull any code in - they just tell the user and compiler what namespaces should be searched for the types that are referenced in the file. See the MSDN documentation on using directives. Note that there is also an unrelated concept called a using statement, designed to help one manage resources by ensuring that when an object goes out of scope, its IDisposable.Dispose method is called. See Uses of "using" in C#. |
|||
|
|
|
|
Of course, it depends on what you're using, the size of the libraries and such, but what is the process of loading these libraries? Does it all happen at compile time? |
||
|
|
|
|
Not at runtime, because they don't generate code. They simplify compilation and refactoring. |
||
|
|
|
|
Not that I'm aware of. My understanding was that resources would be released sooner using them vs. not. |
||
|
|
|
|
A using statement that is unused may be a waste of resources as a using statement is one like:
A using directive on the other hand is just a way of shortening namespaced types down to manageable lengths so removing these when they are unused is purely a compiler nicety (it may reduce memory footprint and time of compilation microscopically) |
||
|
|
|
Probably the biggest benefit that you actually will see for removing the unused using statements is that the standard Intellisense dropdown is shorter (can be a benefit, can be a hindrance). But you're using Resharper, so it doesn't really matter much to you. As other people have already said, the compiled output will be the same either way. |
||
|
|