I'm creating a game in XNA 4.0 and C#. Whenever I create a new class, it always generates the following four lines of code at the top.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
In most cases, these namespaces are not necessary to use in my classes as I do not need to explicitly call the methods that they provide. Should I remove them from each class where they are not being used? Is there an impact on performance if I leave these lines of code in?