I have a C# code file which has few using
directives. Out of these, the classes from some of these are never used. Would it affect performance if those using
directives are left in the code?
In the example shown below, the classes from System.Linq
are never used, would it hurt performance if I leave it there in the code, especially in the case where there are many such files?