-
Notifications
You must be signed in to change notification settings - Fork 0
/
ps3.snippet
64 lines (64 loc) · 1.66 KB
/
ps3.snippet
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>Public void method</Title>
<Shortcut>ps3</Shortcut>
<Description>Public void method</Description>
<Author>Saeid Yarshakiba</Author>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
<SnippetType>SurroundsWith</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Declarations>
<Literal>
<ID>name</ID>
<ToolTip>Method name</ToolTip>
<Default>Method</Default>
</Literal>
<Literal>
<ID>methodType</ID>
<ToolTip>Method type</ToolTip>
<Default>void</Default>
</Literal>
<Literal>
<ID>argType1</ID>
<ToolTip>Argument type 1</ToolTip>
<Default>TYPE1</Default>
</Literal>
<Literal>
<ID>argName1</ID>
<ToolTip>Argument name 1</ToolTip>
<Default>paramName1</Default>
</Literal>
<Literal>
<ID>argType2</ID>
<ToolTip>Argument type 2</ToolTip>
<Default>TYPE2</Default>
</Literal>
<Literal>
<ID>argName2</ID>
<ToolTip>Argument name 2</ToolTip>
<Default>paramName2</Default>
</Literal>
<Literal>
<ID>argType3</ID>
<ToolTip>Argument type 3</ToolTip>
<Default>TYPE3</Default>
</Literal>
<Literal>
<ID>argName3</ID>
<ToolTip>Argument name 3</ToolTip>
<Default>paramName3</Default>
</Literal>
</Declarations>
<Code Language="csharp"><![CDATA[public static $methodType$ $name$ ($argType1$ $argName1$,$argType2$ $argName2$,$argType3$ $argName3$)
{
$selected$$end$
}]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>