Namespace confusion

  • Thread starter Thread starter mp
  • Start date Start date
M

mp

I have a multi project solution
Right click solution | select Property | default namespace = "Investments"

in the solution there are 3 projects
Investments.ViewLayer
Investments.PresentationLayer
Investments.Model

Investments.ViewLayer is the 'startup project'

each of these projects properties have their respective namespaces match the
project name
eg:
in project Investments.ViewLayer,
the objects (.cs files) in that project have:
namespace Investments.ViewLayer
{...

and the properties for the projects likewise have assembly name and default
namespace matching as well

is that a normal way to handle namespaces?

....there's a follow up question waiting but i better take this a step at a
time
.... it involves References (oh no, not that again <g>) and Interfaces

thanks
mark
 
Back
Top