Updated C# and .NET docs supplement (markdown)

James Groom 2023-03-09 23:40:37 +10:00
parent 7f9714a3e4
commit 85a5809405
1 changed files with 4 additions and 0 deletions

@ -11,6 +11,10 @@ To save us repeating our complaints about the lack of proper documentation under
see [feature matrix](https://github.com/TASEmulators/BizHawk/wiki/Available-C%23-and-.NET-features) page
## Guarded `default` in `switch` statements
You can only have 1 `default` branch, but `case _ when ...:` doesn't work. However, `case var _ when ...:` does.
## MSBuild `Condition` placement
On (older versions of?) VS, `Condition` is ignored if placed on a property. Create a new `<PropertyGroup/>`.