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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top