Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add code snippets for C# expression-bodied properties #5683

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions snippets/csharp.json
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,27 @@
],
"description": "An automatically implemented property. C# 3.0 or higher"
},
"propex": {
"prefix": "propex",
"body": [
"public ${1:int} ${2:MyProperty} => ${3:myVar};",
"$0"
],
"description": "An expression-bodied property without a backing field. C# 6.0 or higher"
},
"propexfull": {
"prefix": "propexfull",
"body": [
"private ${1:int} ${2:myVar};",
"public ${1:int} ${3:MyProperty}",
"{",
"\tget => ${2:myVar};",
"\tset => ${2:myVar} = value;",
"}",
"$0"
],
"description": "An expression-bodied property with a private field. C# 6.0 or higher"
},
"sim": {
"prefix": "sim",
"body": [
Expand Down