mjc65

Example 1-57. A more readable nested if statement

Jun 23rd, 2020
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.09 KB | None | 0 0
  1. if (x)
  2. {
  3.     if (y)
  4.     {
  5.         F();
  6.     }
  7.     else
  8.     {
  9.         G();
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment