编译器警告(等级 3)C4638
XML 文档注释目标:引用未知符号
注解
编译器无法解析符号 (symbol)。 该符号在编译中必须有效。
示例
下面的示例生成 C4638:
// C4638.cpp
// compile with: /clr /doc /LD /W3
using namespace System;
/// Text for class MyClass.
public ref class MyClass {
public:
/// <summary> Text </summary>
/// <see cref="aSymbolThatAppearsNowhereInMyProject"/>
// Try the following line instead:
// /// <see cref="System::Console::WriteLine"/>
void MyMethod() {}
}; // C4638