Throughout or C# sourcecode we have a lot of comments that miss the actual content such like this:
/// <summary>
/// </summary>
or this:
/// <summary>
///
/// </summary>
or this:
/// <param Name="flag"></param>
Unfortunately Visual Studio does not generate warnings for this type of missing comments. But for us it would be nice if we could just klick on an item in a list (eg. the warings list) inside visual studio and then be taken to the faulty location in source code to correct it. Also it would be nice to see the list of missing xml comment content upon each build of the xml files. Do you have any idea on how to achieve this?