3
Vote

SA1500 Do-While Loop

description

SA 1500 prevents the normal construction of a Do-While loop:
Do
{
// multiple lines of code
} While (condition);

comments