编译器警告(等级 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);
};