views:

68

answers:

3

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.

A: 

The same naming convention is frequently used in C# projects...

Yacoder
A: 

What is wrong with following the same convention? It is quite common even in the C# world.

slugster
+6  A: 
  • 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".
Mark Byers