do { code} while (stuff);
if
for
foreach
while
switch
using
keyword (stuff){ code}
.http
while (true){ Console.WriteLine("Type `quit` to quit"); Console.WriteLine("Press enter to continue"); selection = Console.ReadLine(); if (selection == "quit") { break; } // all the other code}
quit
string selection;do { Console.WriteLine("Type `quit` to quit"); Console.WriteLine("Press enter to continue"); selection = Console.ReadLine(); // all the other code } while (selection != "quit");