Add editorconfig, fix issues

This commit is contained in:
Matt Nadareski
2026-01-25 17:27:42 -05:00
parent 7058c7a150
commit 0d2f81773d
84 changed files with 407 additions and 244 deletions

View File

@@ -65,7 +65,7 @@ This section contains information on code standards regardless of which part of
- Null-coalescing and null-checking operators can be used to make more readable statements and better get across what a statement or string of statements is doing.
```c#
if (obj?.Parameter != null) { ... }
if (obj?.Parameter is not null) { ... }
bool value = DoSomething() ?? false;
```