--- title: "<remarks> (Visual C++) | Microsoft Docs" ms.custom: "" ms.date: "11/04/2016" ms.reviewer: "" ms.suite: "" ms.technology: - "cpp-ide" ms.tgt_pltfrm: "" ms.topic: "article" f1_keywords: - "remarks" - "" dev_langs: - "C++" helpviewer_keywords: - " C++ XML tag" - "remarks C++ XML tag" ms.assetid: c820083b-3192-40ab-9ec8-1472c55b4247 caps.latest.revision: 9 author: "mikeblome" ms.author: "mblome" manager: "ghogen" translation.priority.ht: - "cs-cz" - "de-de" - "es-es" - "fr-fr" - "it-it" - "ja-jp" - "ko-kr" - "pl-pl" - "pt-br" - "ru-ru" - "tr-tr" - "zh-cn" - "zh-tw" --- # <remarks> (Visual C++) The \ tag is used to add information about a type, supplementing the information specified with [\](../ide/summary-visual-cpp.md). This information is displayed in the [Object Browser](http://msdn.microsoft.com/en-us/f89acfc5-1152-413d-9f56-3dc16e3f0470) and in the Code Comment Web Report. ## Syntax ``` description ``` #### Parameters `description` A description of the member. ## Remarks Compile with [/doc](../build/reference/doc-process-documentation-comments-c-cpp.md) to process documentation comments to a file. ## Example ``` // xml_remarks_tag.cpp // compile with: /LD /clr /doc // post-build command: xdcmake xml_remarks_tag.dll using namespace System; /// /// You may have some primary information about this class. /// /// /// You may have some additional information about this class. /// public ref class MyClass {}; ``` ## See Also [XML Documentation](../ide/xml-documentation-visual-cpp.md)