
May 6th, 2008, 02:14 PM
|
|
Contributing User
|
|
Join Date: Jul 2004
Posts: 129
Time spent in forums: 23 h 42 m 10 sec
Reputation Power: 5
|
|
|
Possible to set defaultly referenced namespaces?
Hello, I am wondering if there is a way to set your defaultly referenced namespaces when new C# files are created. I would like to be able to change this because there are a lot of namespaces that I use over and over again in just about every new class that I add. If it is possible, I would LOVE to know how! Thank you very much
oh btw an example if you dont quite understand my question is the top lines of code referencing namespaces:
Code:
using System;
using System.Collections.Generic;
using System.IO;
using System.Net;
using System.Text;
using System.Reflection;
using System.Xml.Serialization;
|