編譯器警告 (層級 3) C4636
套用至 'construct' 的 XML 文件註解: 標記必須是非空白的 '' 屬性。
標記 (如 cref
) 沒有值。
範例
下列範例會產生 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);
};