- 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:
does that make the program larger in size than if I had:
or is it the same size no matter what you reference?
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?