An operator overload was detected and the expected named alternative method was not found.
By default, this rule only looks at externally visible types, but this is configurable.
Rule description
Operator overloading allows the use of symbols to represent computations for a type. For example, a type that overloads the plus symbol + for addition would typically have an alternative member named Add. The named alternative member provides access to the same functionality as the operator. It's provided for developers who program in languages that do not support overloaded operators.
This rule examines:
Implicit and explicit cast operators in a type by checking for methods named To<typename> and From<typename>.
The operators listed in the following table:
C#
Visual Basic
C++
Alternate method name
+ (binary)
+
+ (binary)
Add
+=
+=
+=
Add
&
And
&
BitwiseAnd
&=
And=
&=
BitwiseAnd
|
Or
|
BitwiseOr
|=
Or=
|=
BitwiseOr
--
N/A
--
Decrement
/
/
/
Divide
/=
/=
/=
Divide
==
=
==
Equals
^
Xor
^
Xor
^=
Xor=
^=
Xor
>
>
>
CompareTo or Compare
>=
>=
>=
CompareTo or Compare
++
N/A
++
Increment
!=
<>
!=
Equals
<<
<<
<<
LeftShift
<<=
<<=
<<=
LeftShift
<
<
<
CompareTo or Compare
<=
<=
<=
CompareTo or Compare
&&
N/A
&&
LogicalAnd
||
N/A
||
LogicalOr
!
N/A
!
LogicalNot
%
Mod
%
Mod or Remainder
%=
N/A
%=
Mod
* (binary)
*
*
Multiply
*=
N/A
*=
Multiply
~
Not
~
OnesComplement
>>
>>
>>
RightShift
>>=
N/A
>>=
RightShift
- (binary)
- (binary)
- (binary)
Subtract
-=
N/A
-=
Subtract
true
IsTrue
N/A
IsTrue (Property)
- (unary)
N/A
-
Negate
+ (unary)
N/A
+
Plus
false
IsFalse
False
IsTrue (Property)
*N/A means the operator cannot be overloaded in the selected language.
Opomba
In C#, when a binary operator is overloaded, the corresponding assignment operator, if any, is also implicitly overloaded.
How to fix violations
To fix a violation of this rule, implement the alternative method for the operator. Name it using the recommended alternative name.
When to suppress warnings
Do not suppress a warning from this rule if you're implementing a shared library. Applications can ignore a warning from this rule.
Suppress a warning
If you just want to suppress a single violation, add preprocessor directives to your source file to disable and then re-enable the rule.
C#
#pragmawarning disable CA2225// The code that's violating the rule is on this line.#pragmawarning restore CA2225
To disable the rule for a file, folder, or project, set its severity to none in the configuration file.
You can configure this option for just this rule, for all rules it applies to, or for all rules in this category (Usage) that it applies to. For more information, see Code quality rule configuration options.
Include specific API surfaces
You can configure which parts of your codebase to run this rule on, based on their accessibility, by setting the api_surface option. For example, to specify that the rule should run only against the non-public API surface, add the following key-value pair to an .editorconfig file in your project:
Vir za to vsebino najdete v storitvi GitHub, kjer lahko tudi ustvarite in pregledate težave in zahtevke za uveljavitev sprememb. Če želite več informacij, glejte naš vodnik za sodelavce.
Povratne informacije o izdelku .NET
.NET je odprtokodni projekt. Izberite povezavo za pošiljanje povratnih informacij: