Advertencia del compilador (nivel 3) C4636
Comentario del documento XML aplicado a 'construcción': la etiqueta requiere que un atributo '' no esté vacío.
Una etiqueta, como cref
, no tiene un valor.
Ejemplo
El ejemplo siguiente genera la advertencia C4636.
// 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);
};