Open
Description
I don't think there's a valid reason to have a <returns>
element on a void typed member:
/// <returns>Nothing at all!</returns>
public void Foo();
Nor on a type:
/// <returns>Nothing at all!</returns>
public class Foo { }
Nor on a field:
/// <returns>Nothing at all!</returns>
private int _foo;
Activity