다음을 통해 공유


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

XML 문서 주석 대상: 오류: 이유

매개 변수> 태그에 <전달된 이름을 컴파일러에서 찾을 수 없습니다.

다음 샘플에서는 C4633을 생성합니다.

// C4633.cpp
// compile with: /clr /doc /LD /W3

/// Text for class MyClass.
public ref class MyClass {
   // C4633 remove line for Int3
   /// <param name="Int1">Used to indicate status.</param>
   /// <param name="Int3">Used to indicate status.</param>
   void MyMethod(int Int1) {
      Int1 = 0;
      Int1++;
   }
};