|
-
Apr 13th, 2004, 03:32 PM
#1
Thread Starter
New Member
Adding Comments
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?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|