Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 525 Bytes

RCS1063.md

File metadata and controls

35 lines (25 loc) · 525 Bytes

RCS1063: Avoid usage of do statement to create an infinite loop

Property Value
Id RCS1063
Category Style
Severity Info

Example

Code with Diagnostic

do // RCS1063
{
    // ...
}
while (true);

Code with Fix

while (true)
{
    // ...
}

See Also

(Generated with DotMarkdown)