I am translating a C++ project to C#. Say the original C++ project name is called Company.Project.SubProject. What is a good name for C# version? Please advise, thanks.
EDIT: Since if both C++ and C# projects are all called Company.Project.SubProject, it would be a开发者_开发问答 bit confusing to distinguish them in TFS or so.
- The project should be called "SubProject".
- The project file should be called "SubProject.csproj".
- The namespace should be called "Company.Project.SubProject".
- The solution containing the project should probably be called "Project".
精彩评论