编译器警告(等级 3)C4633
XML 文档注释目标:错误:原因
编译器未找到传递给 <param> 标记的名称。
下面的示例生成 C4633:
// C4633.cpp
// compile with: /clr /doc /LD /W3
/// Text for class MyClass.
public ref class MyClass {
// C4633 remove line for Int3
/// <param name="Int1">Used to indicate status.</param>
/// <param name="Int3">Used to indicate status.</param>
void MyMethod(int Int1) {
Int1 = 0;
Int1++;
}
};