VC# snippets vs2013

This commit is contained in:
Gert 2015-03-26 17:56:09 +01:00
parent 77fcae8328
commit d715650030

View File

@ -56,19 +56,23 @@
# #
# Feedback is welcome! # Feedback is welcome!
# #
# entry point # Main
snippet sim snippet sim
public static int Main(string[] args) { ${1:public }static int Main(string[] args) {
${0} ${0}
return 0; return 0;
} }
snippet simc snippet simc
public class Application { public class Application {
public static int Main(string[] args) { ${1:public }static int Main(string[] args) {
${0} ${0}
return 0; return 0;
} }
} }
snippet svm
${1:public }static void Main(string[] args){
${0}
}
# if condition # if condition
snippet if snippet if
if (${1:True}) { if (${1:True}) {
@ -93,7 +97,7 @@ snippet do
} while (${1:True}); } while (${1:True});
# while loop # while loop
snippet wh snippet wh
while (${1}) { while (${1:true}) {
${0} ${0}
} }
# for loop # for loop
@ -439,7 +443,32 @@ snippet propf
} }
snippet propg snippet propg
public ${1:int} ${2:MyProperty} { get; private set; } public ${1:int} ${2:MyProperty} { get; private set; }
# switch
snippet switch
switch (${1:switch_on}){
${0}
default:
}
# try
snippet try
try{
${0}
}
catch (${1:System.Exception}){
throw;
}
snippet tryf
try{
${0}
}
finally{
${1}
}
# using
snippet usi
using(${1:resource}){
${0}
}
# todo: iterator, iterindex # todo: iterator, iterindex