We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
/// <see cref="Foo" /> public bool Bar();
This is invalid.
The author probably intended:
/// <seealso cref="Foo" /> public bool Bar();
Activity