+++

2026-04-27 12:33:29 +03:00
parent 0979538477
commit 4ae38e4978

@@ -129,4 +129,35 @@ git config --global user.email "mail@example.com"
] ]
} }
} }
```
### Блок try/catch
```json
{
"Блок try/catch": {
"prefix": "tr",
"body": [
"try",
"{",
"\tthrow new NotImplementedException();",
"}",
"catch (Exception ex)",
"{",
"\t$0throw;",
"}"
]
}
}
```
### Блок throw new NotImplementedException()
```json
{
"Блок throw new NotImplementedException()": {
"prefix": "thr",
"body": "throw new NotImplementedException();"
}
}
``` ```