M
Mike
I have created a solution with 3 projects, P1, P2, P3.
Project P1 has my main method and it also relies on
objects/classes from P2 and P3. Two Questions:
1.
P2 and P3 don't have main methods. Do they need main
methods even though some of their objects are only being
created in P1? The reason I'm asking is because I get
compile errors for both projects which says that
the .exes don't have entry points.
2.
When I try to instantiate P2 and P3 objects in P1, I get
compile errors which tell me that I'm missing using
statements or assembly references. I tried 'using'
statements but it still didn't work. I assume I need to
create .dlls from P2 and P3 and then add references to
P1. Is this the right assumption? Do I need to use
command line or can I do it through the GUI? Does anyone
have any useful links to reading material on this kind of
stuff?
Any suggestions will be greatly appreciated. Thanks a lot
for the reply.
Mike
Project P1 has my main method and it also relies on
objects/classes from P2 and P3. Two Questions:
1.
P2 and P3 don't have main methods. Do they need main
methods even though some of their objects are only being
created in P1? The reason I'm asking is because I get
compile errors for both projects which says that
the .exes don't have entry points.
2.
When I try to instantiate P2 and P3 objects in P1, I get
compile errors which tell me that I'm missing using
statements or assembly references. I tried 'using'
statements but it still didn't work. I assume I need to
create .dlls from P2 and P3 and then add references to
P1. Is this the right assumption? Do I need to use
command line or can I do it through the GUI? Does anyone
have any useful links to reading material on this kind of
stuff?
Any suggestions will be greatly appreciated. Thanks a lot
for the reply.
Mike