I am try to find a namespace naming-convention for code I release as an individual outside of a company environment.
The Microsoft guidelines only help for code written by companies.
The general rule for naming namespaces is to use the company name followed by the technology name and optionally the feature and design as follows.
CompanyName.TechnologyName[.Feature][.Design]
But what should I do as an individual with no company?
In Java I would use the address of my personal website, but in C# url-like namespaces do not seem to be favoured.
This is a subtly different question to namespace naming conventions, since it is about naming conventions for individuals, not companies.