-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
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
Analyzer proposal: Discourage == null
and != null
syntax
#56859
Comments
I couldn't figure out the best area label to add to this issue. If you have write-permissions please help me learn by adding exactly one area label. |
It should be noted that this is only the case if the type overloads the equality operators. If it doesn't, you'll get (I was about to respond that I couldn't reproduce that problem, then it occurred to me that overloaded operators might change the result.) It's honestly pretty bizarre that this even compiles... I think it has something to do with nullable value types. I would definitely like a built-in analyzer that tries to catch this. It's super misleading and almost certainly a bug. I think the right way to do this, though, is to catch this specific pattern, rather than advocate for a specific style of |
Which pattern is this that you're advocating catching? As for CS0019, yes I'm seeing that (now) to. Is that new for some particular C# language or compiler version that would explain why I thought as of a year ago or so, CS0019 wouldn't be produced? |
@jaredpar weren't you the one advocating for this syntax? |
|
Should we consider expanding either rule IDE0041 or rule IDE0150 with the proposed analyzer/fixer behavior? Both existing SDK rules were mentioned in the Twitter thread. Note: only IDE0041 is documented in MS Docs. IDE0150 is not. Also, dotnet/roslyn-analyzers#5337 seems related. |
+1 for this rule, would seem logical for including this given the is null rule is already available. |
This is a great idea. Can we get this added? |
I don't think dotnet/runtime is the correct repo for all new analyzers. Analyzer discussions in dotnet/runtime are for analysis related to APIs and runtime functionality, e.g. you're using XYZ API incorrectly, or you're using something in such a way that's going to run afoul of how it'll execute with the runtime. This issue is about warning about use of particular language syntax, regardless of APIs or runtime, and pushing you to use different language syntax. This is what all of the IDEXXXX rules are about. I want the folks responsible for the language/compiler to also be responsible for making recommendations about which parts of the language should or should not be used, and how, and for it to be appropriately tied in with all of the UI in VS around style preferences. As such I think this should be moved to dotnet/roslyn or dotnet/roslyn-analyzers, and we probably need to be crisper about where and how we review analyzer proposals. (cc: @jeffhandley, @mavasani) (All that said, I think such an analyzer is a fine thing to consider as part of VS and/or Microsoft.CodeAnalysis.CSharp.CodeStyle.) |
Moving to dotnet/roslyn for further triage. |
I don't believe this is discouraged syntax. Indeed, for some types it is the way to properly do a test. For example, ImmutableArray overrides these operators so you can do: void Foo(ImmutableArray<string> array)
{
if (array == null) ... in particular |
|
:D
I think teh intent here was to make ImmutableArray a near drop-in replacement for an actual array. With an actual array you can have null checks, so we wanted to maintain that to prevent churn when using this. Yes, it's a struct. But it's a struct to get a no-overhead wrapper over a reference type. So in that regard it really is intending to feel as close to a ref-type as possible. |
Design Review NotesConclusionWe will add a new diagnostic id for this case that the user can configure. Naming TBD but something like "Prefer is null checks" would be exposes to the user. When this rule is on for the following patterns on the left the developer will be offered to translate to the code on the right:
iff the type of Discussion
|
I would not try to accommodate all corner case or unconventional implementations. Folks can always suppress if needed. This rule will do a lot of good for folks over time. |
ImmutableArray is not a corner case. :) |
I would say that types found in the BCL are not corner cases and whatever rules we ship must, at minimum, work with the types that ship by default with C#. |
I just switched over to C#10 on a project and noticed a bunch of Why is |
No. It's preferred as it's clearer what the purpose of the check is. For example: string s = ...
if (s is string) ... This code is less clear. Given that s is a string, testing to see if it's a string looks superfluous. In this case, the only thing that is actually being tested is not the type, but just that the variable is non-null. Since that's all that is being validated, it's clearer and more idiomatic to just actually simplify the check to just be: |
This rule would be super useful. Winforms has a long running issue to manually fix occurrences and this analyzer would allow resolving the issue in minutes instead of multiple PRs and manual/regex changes. |
@elachlan Can you use the analyzer and code fix that I wrote? (Linked in the description)? |
@jmarolf There are other types in the BCL, e.g, |
I'm rooting for this one as well! |
Any update on this? |
The
== null
and!= null
syntax in C# is vulnerable to allowing dead checks against struct types and even misleading callers when the types being tested have overridden these operators.C# has
is null
,is not null
andis object
syntax that is immune to all these deficiencies, but most C# developers are not familiar with the preferred syntax and most code is written using the discouraged syntax.Analyzers could call these out and offer bulk code fixes to switch to the newer syntax.
In fact I've already done it here: https://github.com/AArnott/CSharpIsNull
Is there interest in taking this into the SDK?
The text was updated successfully, but these errors were encountered: