Skip to content

Latest commit

 

History

History
59 lines (51 loc) · 1.46 KB

File metadata and controls

59 lines (51 loc) · 1.46 KB
title <example> (Visual C++) | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.technology
cpp-ide
ms.topic conceptual
f1_keywords
<example>
example
dev_langs
C++
helpviewer_keywords
<example> C++ XML tag
example C++ XML tag
ms.assetid c821aaa7-7ea7-4bee-9922-6705ad57f877
author mikeblome
ms.author mblome
ms.workload
cplusplus

<example> (Visual C++)

The <example> tag lets you specify an example of how to use a method or other library member. Commonly, this would also involve use of the <code> tag.

Syntax

<example>description</example>  

Parameters

description
A description of the code sample.

Remarks

Compile with /doc 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:  
   /// <summary>  
   /// GetZero method  
   /// </summary>  
   /// <example> This sample shows how to call the GetZero method.  
   /// <code>  
   /// int main()   
   /// {  
   ///    return GetZero();  
   /// }  
   /// </code>  
   /// </example>  
   static int GetZero() {  
      return 0;  
   }  
};  

See Also

XML Documentation