rspec/rules/S2252/csharp/compliant-code.adoc
2023-07-03 14:45:25 +02:00

7 lines
173 B
Plaintext

[source,csharp,diff-id=1,diff-type=compliant]
----
for (int i = 0; i < 10; i++) // Compliant: the condition is true at least once, the loop will execute
{
// ...
}
----