-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsctor.snippet
More file actions
32 lines (32 loc) · 1.07 KB
/
sctor.snippet
File metadata and controls
32 lines (32 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2010/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>静的コンストラクター</Title>
<Description>静的コンストラクターを作成します。</Description>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
</SnippetTypes>
<Shortcut>sctor</Shortcut>
</Header>
<Snippet>
<Declarations>
<Literal>
<ID>className</ID>
<ToolTip>クラス名</ToolTip>
<Function>ClassName()</Function>
<Default>ClassName</Default>
</Literal>
</Declarations>
<Code Language="csharp" Kind="method decl">
<![CDATA[ /// <summary>
/// クラスを初期化します。
/// </summary>
[SuppressMessage("Microsoft.Performance", "CA1810:InitializeReferenceTypeStaticFieldsInline")]
static $className$()
{
}]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>