--- title: "<example> (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: ["", "example"] dev_langs: ["C++"] helpviewer_keywords: [" C++ XML tag", "example C++ XML tag"] ms.assetid: c821aaa7-7ea7-4bee-9922-6705ad57f877 caps.latest.revision: 8 author: "mikeblome" ms.author: "mblome" manager: "ghogen" ms.workload: ["cplusplus"] --- # <example> (Visual C++) The \ tag lets you specify an example of how to use a method or other library member. Commonly, this would also involve use of the [\](../ide/code-visual-cpp.md) tag. ## Syntax ``` description ``` #### Parameters `description` A description of the code sample. ## Remarks Compile with [/doc](../build/reference/doc-process-documentation-comments-c-cpp.md) to process documentation comments to a file. ## Example ``` // xml_example_tag.cpp // compile with: /clr /doc /LD // post-build command: xdcmake xml_example_tag.dll /// Text for class MyClass. public ref class MyClass { public: /// /// GetZero method /// /// This sample shows how to call the GetZero method. /// /// int main() /// { /// return GetZero(); /// } /// /// static int GetZero() { return 0; } }; ``` ## See Also [XML Documentation](../ide/xml-documentation-visual-cpp.md)