Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

C# C# Basics (Retired) Perform if / else

What is the difference between break and if/else ?

I mean what is the best between them to use ... So, the program in both cases => make the same output .. My code is: '''c# if (userInput == "stop") { keepGoing = false; break; // To break the while loop } ''' and he in the video use the if/else block

1 Answer

Steven Parker
Steven Parker
229,732 Points

There's no functional difference. Both methods cause the loop to end when "quit" is entered.

You'll find as programs get more complex, there are also more ways to write them. The important things to consider when comparing different methods are:

  1. functionality
  2. readability
  3. maintainability

And in this case, both approaches are similar in all 3 respects so it's basically just "programmer's preference".

Thanks :) .. I love using break; statement