Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6be25ad

Browse files
augustomelolpil
authored andcommitted
Remove extra spaces
1 parent e879b11 commit 6be25ad

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

snippets/cs.snippets

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
#
5757
# Feedback is welcome!
5858
#
59-
# Main
59+
# Main
6060
snippet sim
6161
${1:public }static int Main(string[] args) {
6262
${0}
@@ -358,7 +358,7 @@ snippet enum
358358
enum ${1} {
359359
${0}
360360
}
361-
361+
362362
snippet enum+
363363
public enum ${1} {
364364
${0}
@@ -378,7 +378,7 @@ snippet <p
378378
snippet <ex
379379
<exception cref="${1:System.Exception}">${2}</exception>
380380
snippet <r
381-
<returns>${1}</returns>{
381+
<returns>${1}</returns>
382382
snippet <s
383383
<see cref="${1}"/>
384384
snippet <rem
@@ -398,7 +398,7 @@ snippet eq
398398
${0:throw new NotImplementedException();}
399399
return base.Equals(obj);
400400
}
401-
# exception
401+
# exception
402402
snippet exc
403403
public class ${1:MyException} : ${2:Exception} {
404404
public $1() { }
@@ -409,13 +409,13 @@ snippet exc
409409
System.Runtime.Serialization.StreamingContext context)
410410
: base(info, context) { }
411411
}
412-
# indexer
412+
# indexer
413413
snippet index
414414
public ${1:object} this[${2:int} index] {
415415
get { ${0} }
416416
set { ${0} }
417417
}
418-
# eventhandler
418+
# eventhandler
419419
snippet inv
420420
EventHandler temp = ${1:MyEvent};
421421
if (${2:temp} != null) {
@@ -442,7 +442,7 @@ snippet propf
442442
}
443443
snippet propg
444444
public ${1:int} ${2:MyProperty} { get; private set; }
445-
# switch
445+
# switch
446446
snippet switch
447447
switch (${1:switch_on}) {
448448
${0}

0 commit comments

Comments
 (0)