For example, in C#
Is
using System.X;
using System.Y;
using System.Z;
by any means slower than
using System.X
, even if the program only uses System.X
?
And, if they doesn't matter, is it a better practice to include all the libraries that you would possibly use, or only those that are used in your code?