Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
.NET code analyzer rule CA2013 is enabled, by default, starting in .NET 5. It produces a build warning for any code where ReferenceEquals(Object, Object) is used to compare one or more value types for equality.
Change description
Starting in .NET 5, the .NET SDK includes .NET source code analyzers. Several of these rules are enabled, by default, including CA2013. If your project contains code that violates this rule and is configured to treat warnings as errors, this change could break your build.
Rule CA2013 finds instances where ReferenceEquals(Object, Object) is used to compare one or more value types for equality. Comparing value types for equality in this way can lead to incorrect results, because the values are boxed before they're compared. ReferenceEquals(Object, Object) will return false
even if the compared values represent the same instance of a value type.
Version introduced
5.0
Recommended action
Change the code to use an appropriate equality operator, such as
==
. You should not suppress this warning.To disable code analysis completely, set
EnableNETAnalyzers
tofalse
in your project file. For more information, see EnableNETAnalyzers.