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