Project 1
-- Class X
Project 2
References Project 1
Project 3
* References Project 2
* Needs ClassX ?
I want to access ClassX from Project 3 - is there anyway to do that?
Project 1
-- Class X
Project 2
References Project 1
Project 3
* References Project 2
* Needs ClassX ?
I want to access ClassX from Project 3 - is there anyway to do that?
Yes, you can do that.
In this example, Project3
is the main project while Project1
and Project2
are class library projects.
Since Project2
refers to Project1
. Project3
just needs to refer to Project2
. Then you can access all of class libraries from Project1
.