In Visual Studio 2005, whenwe add an existing item, we can choose "add aslink" which does not physically copy the file, but only add a link to the file. It works well and is a helpful feature.
The question I have is that how to deal with the name space issue.
for example, if I define class Common in file common.cs:
| usingSystem; |
|
| publicclassCommon |
| { |
| } |
In project A( namespace Company.NSA ), I add common.cs as link.
In projectB( namespace Company.NSB ), I add common.cs as link.
What I want is that I will have have two classes: Company.NSA.Common and Company.NSB.Common - how can I have this?
TIA