Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

dday9

Super Moderator
Joined
Mar 25, 2011
Messages
9,563
Whenever you reference a namespace, whether it is Imports in Visual Basic or Using in C#, does it cause the program the be larger in size? For example, if I had the following code:
Code:
Imports System.Data
'Or Using System.Data

does that make the program larger in size than if I had:
Code:
Imports System.Data.OleDb
'Or Using System.Data.OleDb

or is it the same size no matter what you reference?
 

techgnome

PowerPoster
Joined
May 15, 2002
Messages
32,778
It's just an IDE/Compiler thing... it doesn't actually do anything to your code size... it's just a convenience for the developer so we can save on typing.

That's all.

At best it makes the source code smaller since you don't have to type all those characters.

-tg
 
Top