Delen via


Compilerwaarschuwing (niveau 3) C4633

Doel van XML-documentcommentaar: fout: reden

Opmerkingen

Een naam die aan de <parameter tag> is doorgegeven, is niet door de compiler gevonden.

Example

In het volgende voorbeeld wordt C4633 gegenereerd:

// 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++;
   }
};