K
K Viltersten
I have a solution called Solution and in it,
two projects named Project1 and Project2.
I've organized the packages in a common
namespace ComNamSpc. I.e., i have this,
in each of my source code files.
namespace ComNamSpc{ class Project1{ ... } }
namespace ComNamSpc{ class Project2{ ... } }
Now, Resharper tool claims that i should
call each project by its name as follows.
namespace Project1{ class Project1{ ... } }
namespace Project2{ class Project2{ ... } }
Is it really recommended? Can i/should i put
the namespaces in a common super namespace?
two projects named Project1 and Project2.
I've organized the packages in a common
namespace ComNamSpc. I.e., i have this,
in each of my source code files.
namespace ComNamSpc{ class Project1{ ... } }
namespace ComNamSpc{ class Project2{ ... } }
Now, Resharper tool claims that i should
call each project by its name as follows.
namespace Project1{ class Project1{ ... } }
namespace Project2{ class Project2{ ... } }
Is it really recommended? Can i/should i put
the namespaces in a common super namespace?