added csharp, sql snippets from users

This commit is contained in:
Zhang Chiyuan
2008-09-10 11:56:57 +00:00
parent bfe0255fd1
commit 0732cfc7e6
21 changed files with 177 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
#name : property ... ... { ... }
# --
/// <summary>
/// $5
/// </summary>
/// <value>$6</value>
$1 $2 $3
{
get {
return this.$4;
}
set {
this.$4 = value;
}
}