Developing a series of POCOs on my project, and just realized that some of them doesn't need the using System;
clause.
Is there any performance or size penalty for leaving unused using <module>;
on my objects or project ?
Will my classes get bigger, or slower, or bloated because of this or the compiler/optimizer is smart enough to take care of this?