What is the difference between :
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
and
using System;
using System.Collections.Generic;
Does it really affect performance when adding "too much" references ? For big applications, does is there a difference by removing useless references ?
I mean, if I use "using System" it seems to be enough to cover most of my requirements, so why should I be specific by adding specific references under System reference?
Thanks