Using the Import directive can save you a lot of typing! BUT..

  • Thread starter Thread starter Johns
  • Start date Start date
Not really. It's just a shortcut so you don't have to use full names, but
the compiler eventually ends up with the same class no matter how you
specify its name. It might slow down compiling a little bit (as the compiler
has to search through imported namespaces to get the full class name) but I
wouldn't worry about that.

Jerry
 
Thanks for the prompt reply, Jerry.

Johns.


Jerry III said:
Not really. It's just a shortcut so you don't have to use full names, but
the compiler eventually ends up with the same class no matter how you
specify its name. It might slow down compiling a little bit (as the compiler
has to search through imported namespaces to get the full class name) but I
wouldn't worry about that.

Jerry
 
Back
Top