Using or not Using?

  • Thread starter Thread starter Frank Dietrich
  • Start date Start date
F

Frank Dietrich

Hi,

I am wondering if it makes a difference whether I add a

using <NameSpace>;

statement to the "using section" or leave it out and later in code reference the complete Namespace like

public class ...

public <MyFullNamespace> oProcess;

...

Does it make a difference at all? or maybe only if I have one vs. 15 objects that belong to the namespace?

Any Idea

Thanks in Advance

Regards from Berlin

Frank

Dietrich Datentechnik (Berlin)
Softwarekombinat Teltow (Teltow)

(e-mail address removed)
DFPUG # 327
 
AFAIK it makes no difference whatsoever other than the extra typing and
maintenance required for putting the whole class namespace every single
time.
 
Back
Top