Click here to Skip to main content
15,898,371 members
Home / Discussions / C#
   

C#

 
GeneralRe: Question about spider or web crawler Pin
benzite13-May-03 21:57
benzite13-May-03 21:57 
GeneralRe: Question about spider or web crawler Pin
leppie14-May-03 9:47
leppie14-May-03 9:47 
GeneralRe: Question about spider or web crawler Pin
benzite14-May-03 19:13
benzite14-May-03 19:13 
GeneralProblems with dll's in C# Pin
flyingv13-May-03 20:25
flyingv13-May-03 20:25 
GeneralRe: Problems with dll's in C# Pin
cdehelean13-May-03 21:32
cdehelean13-May-03 21:32 
GeneralRe: Problems with dll's in C# Pin
flyingv13-May-03 21:54
flyingv13-May-03 21:54 
QuestionDuplicate 'using' statements = inefficient ? Pin
nosmij13-May-03 20:09
nosmij13-May-03 20:09 
AnswerRe: Duplicate 'using' statements = inefficient ? Pin
Jon Newman13-May-03 22:06
Jon Newman13-May-03 22:06 
The 'using' keyword simply allows you to directly access namespace members without the namespace.

E.g.

ListBox;

rather than

System.Windows.Forms.ListBox;

So multiple 'using' lines for the same eventual build are ok. It only matters when they are in the same .cs file.
Any referenced dll's are loaded at application start. Check the debug/output window during a dubug run. It will tell you what libraries it is importing.


"If you just say porn then you get all manner of chaff and low grade stuff."
- Paul Watson, Lounge 25 Mar 03
"If a man is standing in the middle of the forest speaking and there is no woman around to hear him, is he still wrong?"
- Anon



Jonathan 'nonny' Newman
Homepage [www.nonny.com] [^]
GeneralRe: Duplicate 'using' statements = inefficient ? Pin
nosmij13-May-03 23:04
nosmij13-May-03 23:04 
GeneralRe: Duplicate 'using' statements = inefficient ? Pin
Jon Newman13-May-03 23:30
Jon Newman13-May-03 23:30 
GeneralRe: Duplicate 'using' statements = inefficient ? Pin
nosmij14-May-03 17:42
nosmij14-May-03 17:42 
AnswerRe: Duplicate 'using' statements = inefficient ? Pin
James T. Johnson14-May-03 14:19
James T. Johnson14-May-03 14:19 
GeneralRe: Duplicate 'using' statements = inefficient ? Pin
nosmij14-May-03 17:49
nosmij14-May-03 17:49 
GeneralRe: Duplicate 'using' statements = inefficient ? Pin
James T. Johnson14-May-03 18:24
James T. Johnson14-May-03 18:24 
GeneralRe: Duplicate 'using' statements = inefficient ? Pin
nosmij14-May-03 18:48
nosmij14-May-03 18:48 
GeneralRe: Duplicate 'using' statements = inefficient ? Pin
nosmij14-May-03 19:05
nosmij14-May-03 19:05 
GeneralRe: Duplicate 'using' statements = inefficient ? Pin
Jon Newman14-May-03 22:56
Jon Newman14-May-03 22:56 
GeneralReally hard question #1 Pin
eggie513-May-03 20:02
eggie513-May-03 20:02 
GeneralRe: Really hard question #1 Pin
Robin Golden14-May-03 2:39
Robin Golden14-May-03 2:39 
GeneralRe: Really hard question #1 Pin
eggie514-May-03 7:52
eggie514-May-03 7:52 
GeneralRe: Really hard question #1 Pin
eggie514-May-03 9:36
eggie514-May-03 9:36 
GeneralRe: Really hard question #1 Pin
James T. Johnson14-May-03 14:13
James T. Johnson14-May-03 14:13 
GeneralRe: Really hard question #1 Pin
eggie514-May-03 16:57
eggie514-May-03 16:57 
GeneralRe: Really hard question #1 Pin
James T. Johnson14-May-03 17:07
James T. Johnson14-May-03 17:07 
GeneralRe: Really hard question #1 Pin
eggie514-May-03 17:46
eggie514-May-03 17:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.