다음을 통해 공유


컴파일러 경고(수준 3) C4638

XML 문서 주석 대상: 알 수 없는 기호 'symbol'에 대한 참조

설명

컴파일러에서 기호(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