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) Perfect Validating Input

Continue tag in C#

Why we need use continue tag? What is used for continue tag? Thanks for helping.

1 Answer

Steven Parker
Steven Parker
229,732 Points

Do you mean continue statement?

In a loop, a continue can be used to skip any remaining code in the loop and start over with the next iteration. When properly used, it can help simplify the loop code and also make the loop run faster.

This is explained in the video beginning about 1 minute in.