הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
XML document comment has an ambiguous cross reference
Remarks
The compiler was unable to unambiguously resolve a reference. To resolve this warning, specify the parameter information necessary to make the reference unambiguous.
For more information, see XML Documentation.
Example
The following example generates 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 ) {}
};