4
Answers

Need for reference path on project/properties

paul walker

paul walker

15y
8.7k
1

Sorry, novice question here, but what is the need for the reference path on the project/properties?  I find that I am perfectly able to add assemblies via the 'Add Reference' by right-clicking the reference folder and navigating to the correct directory.  I can do this without having to enter anything onto the project properties.
I am sure that there is a perfectly good reason, but I cant see it at the moment.
Thanks
Paul
Answers (4)
0
Nazmul Badsha

Nazmul Badsha

NA 505 13.3k 7y
  1. SELECT Empid,Empname,Deptname  
  2. FROM Employee  
  3. INNER JOIN Department ON Department.Deptid = Employee.Deptid  
This is the best code.
0
Tapan Patel

Tapan Patel

NA 8.1k 101k 7y
  1. SELECT Empid,  
  2.             Empname,  
  3.             Deptname  
  4. FROM Employee   
  5. INNER JOIN Department ON Department.Deptid = Employee.Deptid