using namespace acroos projects?

  • Thread starter Thread starter MM
  • Start date Start date
M

MM

The only way I've figured out so far is to place the classes in the
'Solution' scope. Is this okay? Is there a better way to access classes
in one project in another project within the same solution? Thanks. m
 
MM said:
The only way I've figured out so far is to place the classes in the
'Solution' scope. Is this okay?

Not really, I'm afraid.
Is there a better way to access classes
in one project in another project within the same solution? Thanks. m

Absolutely - put them in class library projects, and add a reference
from the project which wants to use the class to the project which
contains the class.
 
Back
Top