编译器警告(等级 3)C4641

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

编译器不能明确地解析引用。 若要消除此警告,请指定明确引用所必须的参数信息。

有关更多信息,请参见 XML Documentation (Visual C++)

示例

下面的示例生成 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 ) {}
};