Updated C# and .NET docs supplement (markdown)
parent
e6034e022d
commit
341f00013a
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue