SyntaxFix
Write A Post
Hire A Developer
Questions
With c#9 (2020) you can now check a parameter is null with this code:
if (name is null) { } if (name is not null) { }
You can have more information here