Partilhar via


Aviso do Compilador (nível 3) C4636

Comentário da documentação XML aplicado a 'construct': a marca requer o atributo '' não vazio.

Uma marca, como cref, não tinha um valor.

Exemplo

A amostra a seguir gera 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);
};