Property | Value |
---|---|
Id | RCS1215 |
Category | Redundancy |
Severity | Warning |
uint i = 0;
// ...
if (i >= 0) // RCS1215
{
}
var items = new List<object>();
// ...
if (items.Count < 0) // RCS1215
{
}
x == double.NaN
double.IsNaN(x)
(Generated with DotMarkdown)