Good programming habits questions. Do additional using statements that the Class does not use affect the speed of the application?
Example I have a Class called StoreController -
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
However, it only needs
using System.Web.Mvc; //Love some Resharerper
My question still, does it really affect the application to have the unused using statements?