Updated C# and .NET docs supplement (markdown)

James Groom 2024-10-31 04:07:59 +10:00
parent e6034e022d
commit 341f00013a
1 changed files with 1 additions and 1 deletions

@ -62,7 +62,7 @@ see [feature matrix](https://github.com/TASEmulators/BizHawk/wiki/Available-C%23
## Guarded `default` in `switch` statements
You can only have 1 `default` branch, but `case _ when ...:` doesn't work. However, `case var _ when ...:` does.
You can only have 1 `default:` branch (not to be confused with `case default:`), but you can't simply add a guard clause: `case _ when ...:` doesn't work. However, `case var _ when ...:` does.
## MSBuild `Condition` placement