mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-05 18:36:41 +00:00
Small improvements
This commit is contained in:
parent
19763a0d3a
commit
91e3f4b66e
1 changed files with 6 additions and 4 deletions
|
@ -485,7 +485,7 @@ In `Project.csproj`:
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>netcoreapp3.0</TargetFramework>
|
||||
<TargetFramework>...</TargetFramework>
|
||||
|
||||
<!-- set nullabilty context at project level -->
|
||||
<Nullable>enable | warning | annotations | disable</Nullable>
|
||||
|
@ -518,10 +518,14 @@ Type? variable = null; // the variable can also contain the NULL value (nullabl
|
|||
// same as
|
||||
variable?.property // if variable != null access it's property (null conditional), return null otherwise
|
||||
|
||||
if (variable != null)
|
||||
if (variable != null)
|
||||
{
|
||||
return variable;
|
||||
}
|
||||
else
|
||||
{
|
||||
return value;
|
||||
}
|
||||
// same as
|
||||
var variable = var ?? value // return var if var != null, return value otherwise
|
||||
|
||||
|
@ -950,8 +954,6 @@ using (Type obj = new Type()) // obj disposed at the end of the using block
|
|||
using Type obj = new Type(); // disposed at the end of the block
|
||||
|
||||
}
|
||||
|
||||
|
||||
```
|
||||
|
||||
### `Cheched`/`Unchecked` Statements
|
||||
|
|
Loading…
Add table
Reference in a new issue