共用方式為


<example> (Visual C++)

<example> 標記讓您指定一個範例,說明如何使用方法或其他程式庫成員。通常,這也會牽涉到 <code> 標記的用途。

<example>description</example>

參數

  • description
    為程式碼範例的描述。

備註

使用 /doc 進行編譯,將文件註解處理為檔案。

範例

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

請參閱

其他資源

XML 文件 (Visual C++)