Import 요소(IntelliSense 코드 조각)
IntelliSense 코드 조각에서 사용되는 가져온 네임스페이스를 지정합니다.
<Import>
<Namespace>... </Namespace>
</Import>
특성 및 요소
다음 단원에서는 특성, 자식 요소 및 부모 요소에 대해 설명합니다.
특성
없음
자식 요소
요소 |
설명 |
---|---|
필수적 요소입니다. 코드 조각에서 사용되는 네임스페이스를 지정합니다.Import 요소에 Namespace 요소가 하나만 있어야 합니다. |
부모 요소
요소 |
설명 |
---|---|
Import 요소에 대한 그룹화 요소입니다. |
설명
Imports 요소는 Visual Basic 프로젝트에서만 지원됩니다.
예제
다음 예제에서는 System.Data 네임스페이스를 가져오는 코드 조각을 보여 줍니다.
<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>
</Imports>
<Declarations>
<!-- Insert literal and object declarations here. -->
</Declarations>
<Code Language="VB">
<!-- Insert code here. -->
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>