Bagikan melalui


Compiler Warning (level 3) C4638

Target komentar dokumen XML: referensi ke simbol 'simbol' yang tidak diketahui

Keterangan

Pengkompilasi tidak dapat mengatasi simbol (simbol). Simbol harus valid dalam kompilasi.

Contoh

Sampel berikut menghasilkan 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