¿Cuál es la sintaxis correcta para un bucle "while" en C#?
do { statements } while (condition)
while (condition) { statements }
for (int i = 0; i < n; i++) { statements }