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

6 lines
175 B
Plaintext

[source,vbnet,diff-id=1,diff-type=compliant]
----
For i As Integer = 0 To 10 Step 1 ' Compliant: the condition is true at least once, the loop will execute
' ...
Next
----