bluesky8059

Untitled

Apr 15th, 2015
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.23 KB | None | 0 0
  1. //Bad
  2. if (compare == true)
  3.     Console.WriteLine(hand_cnt + " True");
  4. else
  5. {
  6.     Console.WriteLine("False");
  7.     break;
  8. }
  9.  
  10. //Good
  11. if (compare == true)
  12.     Console.WriteLine(hand_cnt + " True");
  13. else
  14. {
  15.     Console.WriteLine("False");
  16. }
Advertisement
Add Comment
Please, Sign In to add comment