Compilerwarnung (Ebene 3) C4636
Auf 'construct' angewendeter XML-Dokumentkommentar: Für das Tag ist ein nicht leeres Attribut erforderlich.
Ein Tag, wie etwa cref
, wies keinen Wert auf.
Beispiel
Im folgenden Beispiel wird C4636 generiert:
// C4636.cpp
// compile with: /clr /doc /W3 /c
/// <see cref=''/>
// /// <see cref='System::Exception'/>
ref struct A { // C4636
void f(int);
};
// OK
/// <see cref='System::Exception'/>
ref struct B {
void f(int);
};