Assembly 元素(IntelliSense 代码段)
指定代码段所引用的程序集的名称。
<Assembly>
AssemblyName
</Assembly>
特性和元素
以下几节描述了特性、子元素和父元素。
特性
无。
子元素
无。
父元素
元素 |
说明 |
---|---|
包含有关代码段所需的程序集引用的信息。 |
文本值
需要一个文本值。
此文本指定代码段引用的程序集。
备注
Assembly 元素仅受 Visual Basic 代码段支持。
Assembly 元素的文本值可以是程序集的友好文本名称(如 System.dll),也可以是程序集的强名称(如 System,Version=1.0.0.1,Culture=neutral,PublicKeyToken=9b35aa323c18d4fb1)。
示例
下面的代码段引用程序集 System.Data.dll。在插入代码段时,此引用将被添加到项目中。
<CodeSnippets xmlns="https://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>Create a data adapter</Title>
<Description>Creates a SqlDataAdapter object.</Description>
<Author>Microsoft Corporation</Author>
<Shortcut>createadapter</Shortcut>
</Header>
<Snippet>
<References>
<Reference>
<Assembly>System.Data.dll</Assembly>
<Url>https://www.microsoft.com</Url>
</Reference>
</References>
<Imports>
<Import>
<Namespace>System.Data</Namespace>
</Import>
</Imports>
<Declarations>
<Literal>
<ID>SQL</ID>
<ToolTip>Replace with a SQL connection string.</ToolTip>
<Default>"SQL connection string"</Default>
</Literal>
<Object>
<ID>Connection</ID>
<Type>System.Data.SqlClient.SqlConnection</Type>
<ToolTip>Replace with a connection object in your application.</ToolTip>
<Default>dcConnection</Default>
</Object>
</Declarations>
<Code Language="VB">
<![CDATA[
daCustomers = new SqlClient.SqlDataAdapter();
selectCommand = new SqlClient.SqlCommand($SQL$);
daCustomers.SelectCommand = selectCommand;
daCustomers.SelectCommand.Connection = $Connection$;
]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>