Code inspection: Missing XML comment for private or internal type or member
This inspection reports an internal or private type/member without XML documentation.
This inspection is disabled by default, but when enabled it helps teams that want XML docs not only for public API, but also for internal or private code.
Example
class Worker
{
internal void Run()
{
}
}
class Worker
{
/// <summary>
///
/// </summary>
internal void Run()
{
}
}
Quick-fix
Add an XML documentation stub for the declaration.
28 March 2026