52 lines
1.1 KiB
Plaintext
52 lines
1.1 KiB
Plaintext
<?xml version="1.0" encoding="utf-8"?>
|
|
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
|
|
<CodeSnippet Format="1.0.0">
|
|
<Header>
|
|
<Title>classBll</Title>
|
|
<Shortcut>classBll</Shortcut>
|
|
<Description>类的代码片段</Description>
|
|
<Author>zz</Author>
|
|
<SnippetTypes>
|
|
<SnippetType>Expansion</SnippetType>
|
|
<SnippetType>SurroundsWith</SnippetType>
|
|
</SnippetTypes>
|
|
</Header>
|
|
<Snippet>
|
|
<Declarations>
|
|
<Literal>
|
|
<ID>modifier</ID>
|
|
<ToolTip>修饰符</ToolTip>
|
|
<Default>public</Default>
|
|
</Literal>
|
|
<Literal>
|
|
<ID>name</ID>
|
|
<ToolTip>类名</ToolTip>
|
|
<Default>MyClass</Default>
|
|
</Literal>
|
|
<Literal>
|
|
<ID>inherit</ID>
|
|
<ToolTip>类名</ToolTip>
|
|
<Default>BLLBase</Default>
|
|
</Literal>
|
|
</Declarations>
|
|
<Code Language="csharp"><![CDATA[
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
$modifier$ class $name$ : $inherit$
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="dao"></param>
|
|
$modifier$ $name$(DAO dao):base(dao){
|
|
|
|
}
|
|
|
|
$selected$$end$
|
|
}]]>
|
|
</Code>
|
|
</Snippet>
|
|
</CodeSnippet>
|
|
</CodeSnippets>
|