Bagikan melalui


Compiler Warning (level 3) C4636

Komentar dokumen XML yang diterapkan ke 'konstruksi': tag memerlukan atribut '' yang tidak kosong.

Tag, seperti cref, tidak memiliki nilai.

Contoh

Sampel berikut menghasilkan 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);
};