rspec/rules/S3060/csharp/rule.adoc

17 lines
512 B
Plaintext
Raw Normal View History

2020-06-30 12:48:39 +02:00
There's no valid reason to test <code>this</code> with <code>is</code>. The only plausible explanation for such a test is that you're executing code in a parent class conditionally based on the kind of child class <code>this</code> is. But code that's specific to a child class should be _in_ that child class, not in the parent.
== Noncompliant Code Example
----
public class JunkFood
{
public void DoSomething()
{
if (this is Pizza) // Noncompliant
{
// ...
} else if (...
}
}
----