I saw the following namespace implementation in an article and i really can't get the point why they did so?
using sysConfig =System.Configuration ;
string connectionString = sysConfig.ConfigurationManager.
ConnectionStrings["connectionString"].ConnectionString;
I know It can be easily implemented like this,
string connectionString = System.Configuration.ConfigurationManager.
ConnectionStrings["connectionString"].ConnectionString;
Any suggestion when to use the first type...