Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 876 Bytes

compiler-warning-level-3-c4638.md

File metadata and controls

35 lines (28 loc) · 876 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 3) C4638
Compiler Warning (level 3) C4638
08/27/2018
C4638
C4638
2c07923a-e103-4e40-bd11-fdfed428a5ec

Compiler Warning (level 3) C4638

XML document comment target: reference to unknown symbol 'symbol'

Remarks

The compiler was unable to resolve a symbol (symbol). The symbol must be valid in the compilation.

Example

The following sample generates 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