Condividi tramite


<remarks> (Visual C++)

Il tag <remarks> viene utilizzato per aggiungere informazioni sul tipo che integrano quelle specificate con <summary>.Queste informazioni verranno visualizzate in Visualizzatore oggetti e nel report Web sui commenti del codice.

<remarks>description</remarks>

Parametri

  • description
    Descrizione del membro.

Note

Eseguire la compilazione con /doc per elaborare in un file i commenti per la creazione della documentazione.

Esempio

// xml_remarks_tag.cpp
// compile with: /LD /clr /doc
// post-build command: xdcmake xml_remarks_tag.dll

using namespace System;

/// <summary>
/// You may have some primary information about this class.
/// </summary>
/// <remarks>
/// You may have some additional information about this class.
/// </remarks>
public ref class MyClass {};

Vedere anche

Altre risorse

Documentazione XML (Visual C++)