I am using System.Configuration.ConfigurationManager only once in my entire code, and I'm wondering if it is better practice to name it explicitly rather than use a 'using' declaration.
string LogoUrl = System.Configuration.ConfigurationManager.AppSettings["LogoURL"];
and
using System.Configuration;;
string LogoUrl = ConfigurationManager.AppSettings["LogoURL"];
Does having the 'using' declaration involve more overhead than explicitly stating the namespace e.g. does it pull in more than I need?