In Visual Studio 2012, when I add a new class to my project, it automatically comes with some namespaces (System, System.Collections.Generic, System.Linq and System.Text).
I always use System.Data and I want this namespace in all my classes. My question is this: How can I configure that all my new classes already comes with that namespace in top of it?
I'm sorry if my question wasn't clear enough. Thanks in advance!
using System;
lines at the top of the file, those arenamespaces
, not dll/libraries. One dll/library (that gets referenced at the project level) could contain many namespaces. – George Duckett