共用方式為


編譯器警告 (層級 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