File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 56
56
#
57
57
# Feedback is welcome!
58
58
#
59
- # Main
59
+ # Main
60
60
snippet sim
61
61
${1: public } static int Main(string[] args) {
62
62
${0}
@@ -358,7 +358,7 @@ snippet enum
358
358
enum ${1} {
359
359
${0}
360
360
}
361
-
361
+
362
362
snippet enum+
363
363
public enum ${1} {
364
364
${0}
@@ -378,7 +378,7 @@ snippet <p
378
378
snippet <ex
379
379
<exception cref="${1: System.Exception } ">${2} </exception>
380
380
snippet <r
381
- <returns>${1} </returns>{
381
+ <returns>${1} </returns>
382
382
snippet <s
383
383
<see cref="${1} "/>
384
384
snippet <rem
@@ -398,7 +398,7 @@ snippet eq
398
398
${0: throw new NotImplementedException(); }
399
399
return base.Equals(obj);
400
400
}
401
- # exception
401
+ # exception
402
402
snippet exc
403
403
public class ${1: MyException } : ${2: Exception } {
404
404
public $1 () { }
@@ -409,13 +409,13 @@ snippet exc
409
409
System.Runtime.Serialization.StreamingContext context)
410
410
: base(info, context) { }
411
411
}
412
- # indexer
412
+ # indexer
413
413
snippet index
414
414
public ${1: object } this[${2: int } index] {
415
415
get { ${0} }
416
416
set { ${0} }
417
417
}
418
- # eventhandler
418
+ # eventhandler
419
419
snippet inv
420
420
EventHandler temp = ${1: MyEvent } ;
421
421
if (${2: temp } != null) {
@@ -442,7 +442,7 @@ snippet propf
442
442
}
443
443
snippet propg
444
444
public ${1: int } ${2: MyProperty } { get; private set; }
445
- # switch
445
+ # switch
446
446
snippet switch
447
447
switch (${1: switch_on } ) {
448
448
${0}
You can’t perform that action at this time.
0 commit comments