编译器警告(等级 3)C4641

XML 文档注释含有不明确的交叉引用。

编译器无法明确解析引用。 要解决此警告,请指定使引用明确所需的参数信息。

有关更多信息,请参见 XML Documentation

示例

以下示例生成 C4641。

// C4641.cpp
// compile with: /W3 /doc /clr /c

/// <see cref="f" />   // C4641
// try the following line instead
// /// <see cref="f(int)" />
public ref class GR {
public:
   void f( int ) {}
   void f( char ) {}
};