too many using (imports in vb)... does it hit on performance or memory usage?

  • Thread starter Thread starter ThunderMusic
  • Start date Start date
T

ThunderMusic

Hi,
I want to know if having to many using (imports in VB) statements at the top
of a class or page can hit on the performance of the application or on the
memory usage of the application.

I use ASP.NET framework v2.0... When creating a web page there are about
10-15 using statements at the top, should I leave them there or remove all
those the page doesn't use?

Thanks

ThunderMusic
 
oops, should be "using directives" not "using statements" (looks like they
are different things)

thanks

ThunderMusic
 
ThunderMusic said:
oops, should be "using directives" not "using statements" (looks like they
are different things)

They have no bearing whatsoever on performance or memory usage - they simply
help out the compiler and have no manifestation in the finished assembly at
all.

-cd
 
thanks a lot

Carl Daniel said:
They have no bearing whatsoever on performance or memory usage - they
simply help out the compiler and have no manifestation in the finished
assembly at all.

-cd
 
Back
Top