i have seen many C# programs that imports unused namespaces is that a bad habbit.is that kind of namespaces reduces the efficiency of program. eg:
using System;
using System.Collections.Generic;//unused namespace
using System.Linq;//unused namespace
using System.Text;//unused namespace
namespace ConsoleApplication14
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World");
Console.ReadKey();
}
}
}