Compilerwarnung (Ebene 3) C4638

XML-Dokumentkommentarziel: Verweis auf unbekanntes Symbol "Symbol"

Hinweise

Der Compiler konnte ein Symbol nicht auflösen (Symbol). Das Symbol muss in der Kompilierung gültig sein.

Beispiel

Im folgenden Beispiel wird C4638 generiert:

// 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