Namespace and solution name

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

If I have a namespace "MyCompany.Project.Helpers", do I have to name the solution (or, at least, the resulting DLL) as MyCompany.Project.Helpers.dll?
 
Massuda,

No, you do not. Take System.dll or mscorlib.dll for example. This is
referenced by pretty much every .NET application, and it contains classes in
the System, System.IO, etc, etc namespaces.

Hope this helps.

--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Massuda said:
If I have a namespace "MyCompany.Project.Helpers", do I have to name the
solution (or, at least, the resulting DLL) as MyCompany.Project.Helpers.dll?
 
Back
Top