We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://docs.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-9
new
if (e is not null) { // ... }
or
if (e != null) { // ... }
t is not > 4 or not < 10 and not 0 and 0
var a = CreateA(); // ... public A CreateA() { // ... return new() // <-- here { Str = "some text" }; }
public A CreateA() { // ... return new A // <-- here { Str = "some text" }; }
StringBuilder sb = new();
var sb = new StringBuilder();
TODO...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://docs.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-9
Pattern matching enhancements
new
or
t is not > 4 or not < 10 and not 0 and 0
Fit and finish features
new
or
new
or
TODO...
The text was updated successfully, but these errors were encountered: