共用方式為


Description 項目 (IntelliSense 程式碼片段)

指定有關 IntelliSense 程式碼片段內容的描述性資訊。

<Description>
    Code Snippet Description
</Description>

屬性和項目

下列各節將說明屬性、子項目和父項目。

屬性

無。

子項目

無。

父項目

項目

描述

Header

包含有關程式碼片段的一般資訊。

文字值

需要文字值。

此文字指定程式碼片段的描述。

備註

Description 項目的文字值為程式碼片段選擇器中的程式碼片段提供工具提示,並為程式碼片段管理員中的程式碼片段提供描述。

範例

在下列程式碼片段中的 Description 項目包含值 Copies a file and saves it as another file。 此描述會以程式碼片段的工具提示出現在 [程式碼片段插入器] 並以程式碼片段的描述出現在 [程式碼片段管理員]。

<CodeSnippets xmlns="https://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
   <CodeSnippet Format="1.0.0">
      <Header>
         <Title>Copy File</Title>
         <Author>Microsoft Corporation</Author>
         <Description>Copies a file and saves it as another file.</Description>
         <HelpUrl>www.microsoft.com</HelpUrl>
         <SnippetTypes>
            <SnippetType>Expansion</SnippetType>
         </SnippetTypes>
         <Keywords>
             <Keyword>File copying</Keyword>
             <Keyword>Copying files</Keyword>
         </Keywords>
         <Shortcut>copyfile</Shortcut>
      </Header>
      <Snippet>
         <!-- Insert snippet information here -->
      </Snippet>
   </CodeSnippet>
</CodeSnippets>

請參閱

概念

程式碼片段結構描述參考