Imports 要素 (IntelliSense コード スニペット)
更新 : 2007 年 11 月
複数の Import 要素をグループ化します。
<Imports>
<Import>... </Import>
<Imports>
属性と要素
以降のセクションでは、属性、子要素、および親要素について説明します。
属性
なし。
子要素
要素 |
説明 |
---|---|
省略可能な要素 コード スニペットでインポートする必要のある名前空間が格納されます。Imports 要素に 0 個以上の Import 要素があります。 |
親要素
要素 |
説明 |
---|---|
コード スニペットの参照、インポート、宣言、およびコードが格納されます。 |
解説
Imports 要素は、Visual Basic プロジェクトでのみサポートされます。
使用例
System.Data および System.Xml の名前空間をインポートする必要のあるコード スニペットの例を次に示します。
<CodeSnippets xmlns="https://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<!-- Insert Header information here. -->
</Header>
<Snippet>
<Imports>
<Import>
<Namespace>System.Data</Namespace>
</Import>
<Import>
<Namespace>System.Xml</Namespace>
</Import>
</Imports>
<Declarations>
<!-- Insert literal and object declarations here. -->
</Declarations>
<Code Language="VB">
<!-- Insert code here. -->
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>