How do I add comments to my namespace. I have my created my own namespace in .NET and has 2 classes in it. I can use the comment tags like summary,remarks etc with in the Class or before the class but I want to add comments to the name space.
Say if the user is browsing the documentation either using ndoc or codecommentgenerator it should say namespace test has 2 classes etc like you see the documentation in MSDN Namespaces.

namespace test
{
///<summary>class1 performs some action etc</summary>
class1
{
}
///<summary>class2 performs some action etc</summary>
class2
{
}
}

Any clues?