Advertisement
mjc65

Example 1-70. do-while loop

Jun 23rd, 2020
607
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.06 KB | None | 0 0
  1. do
  2. {
  3.     Console.WriteLine("Executed once!");
  4. }
  5. while (false);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement