What is the difference between adding reference in solution Explorer and adding references by USING

Showing Answers 1 - 3 of 3 Answers

Ganesan

  • Jun 10th, 2007
 

Adding reference in solution explorer is used to add the DLL for that project for reference only. If you want to utilize that DLL methods/functions in our aspx.cs/.cs file etc , you must write using that nameclass library name in file.

  Was this answer useful?  Yes

ynvpavan

  • Oct 1st, 2008
 

Adding referece in solution exploere comes with adding of like assemlie to the application. Means of adding private assemblies to the application. Where as adding refernce using denotes that these DDL's are to be laoded into the memory while running this particular page and this methods from this assembly are being utilised in this page.

Adding reference in solution explorer is used to add the DLL for that project for reference only. If you want to utilize that DLL methods/functions in our aspx.cs/.cs file etc you must write using that nameclass library name in file.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions