I recently stopped using "using statements" and instead use the full namespace path of any .NET object that I call.
Example:
using System;
namespace QuizViewer
{
class Class1
{
Console.WriteLine("Hello World!");
}
}
This is what I do now.
namespace QuizViewer
{
class Class1
{
System.Console.WriteLine("Hello World!");
}
}
Before you ask why I do this, I am using this style so that I can see exactly where my objects are coming from and its easier when using the different Timer objects and other objects with similar names.
Is there any performance increase or decrease for this style of programming?
Timer, where there are several equally-named classes, but for the most part, I'd consider the namespaces to be noise.) – Aasmund Eldhuset Jul 8 '11 at 18:10using(var stream = File.Open(...)) { ... }. – Eric Lippert Jul 8 '11 at 18:38using FrobTimer = BogoSoft.Froboznicator.Timer;-- now you can use the identifierFrobTimerin that file and the compiler will know that you mean the fully-qualified type. – Eric Lippert Jul 8 '11 at 18:41