All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.plugins.csharp.S1264.html Maven / Gradle / Ivy

There is a newer version: 10.2.0.105762
Show newest version

Why is this an issue?

When only the condition expression is defined in a for loop, and the initialization and increment expressions are missing, a while loop should be used instead to increase readability.

Noncompliant code example

for (;condition;) { /*...*/ }

Compliant solution

while (condition) { /*...*/ }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy