Avviso del compilatore (livello 3) C4636

Commento al documento XML applicato a 'construct': il tag richiede un attributo '' non vuoto.

Un tag, ad esempio cref, non ha un valore.

Esempio

L'esempio seguente genera l'errore 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);
};