0

Namespaces in .NET are meant to

  • Group logical pieces of code together
  • Prevent conflicts caused by use of common names

That said it's fairly open for doing naming that is interesting, funny or just different.

Do you have any examples of these different names?

I am not looking for Good namespace naming - rather the fun or different side, even if it goes against proven practices.

Community
  • 1
  • 1
Robert MacLean
  • 38,975
  • 25
  • 98
  • 152
  • 1
    I'm out of votes, otherwise I'd be voting to close, as this question has little value. Namespaces aren't supposed to be fun! :) – Mitch Wheat Jun 21 '09 at 10:36
  • What do you mean, they aren't supposed to be fun? Namespaces are one honking great idea -- let's do more of those! Not in .NET? – balpha Jun 21 '09 at 10:51

1 Answers1

0

An example of one I saw was everyone in the team had their own namespace, for example:

  • Company.Product.Jim
  • Company.Product.Bob

When I asked about this, it was so they could track who did what and prevent conflicts when checking in.

Robert MacLean
  • 38,975
  • 25
  • 98
  • 152