vote up 7 vote down star
1

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?

flag

20% accept rate
I think you're actually asking about using directives - the things at the top of the files that talk about namespaces. using statements look like using ( someobject) {...} and automatically call an object's Dispose method at the end of the block. I've retagged, but can't edit yet... – Blair Conrad Sep 17 '08 at 21:23

closed as exact duplicate by Blair Conrad Nov 10 '08 at 14:00

6 Answers

vote up 16 vote down check

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#.

link|flag
vote up 1 vote down

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.

link|flag
vote up 3 vote down

A using statement that is unused may be a waste of resources as a using statement is one like:

using (SomeObject o = new SomeObject())
{
    //Use o here
}

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)

link|flag
Thanks for that clarification. You get a vote when I have some to give. – __ Sep 17 '08 at 21:33
vote up 1 vote down

Not that I'm aware of. My understanding was that resources would be released sooner using them vs. not.

link|flag
vote up 1 vote down

Not at runtime, because they don't generate code. They simplify compilation and refactoring.

link|flag
vote up 0 vote down

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?

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.