J
Jon Davis
Namespaces don't have <summary> documentation (do they?), and I think it
would be nice to have it. For instance,
/// <summary>
/// Classes containing math functions.
/// </summary>
namespace BillyBob.Math {
...
}
Now if you had more than one <summary> compiled with a namespace, such as
having two class files each with a different <summary> for its otherwise
identical namespace, then the consumer could be able to cycle through the
different summary descriptions... it should be an array of descriptions.
Might be a little messy I suppose, but it's better than no descriptions at
all.
Sometimes people deliver things in the strangest namespaces ...
Jon
would be nice to have it. For instance,
/// <summary>
/// Classes containing math functions.
/// </summary>
namespace BillyBob.Math {
...
}
Now if you had more than one <summary> compiled with a namespace, such as
having two class files each with a different <summary> for its otherwise
identical namespace, then the consumer could be able to cycle through the
different summary descriptions... it should be an array of descriptions.
Might be a little messy I suppose, but it's better than no descriptions at
all.
Sometimes people deliver things in the strangest namespaces ...
Jon