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

Payton Maurer
Payton Maurer
295 Points

error CS1525: Unexpected symbol 'continue'

When trying to compile my program I keep getting an error that says "Unexpected symbol 'continue'." The word 'continue' has the same syntax highlight as the other C# keywords, so I am not sure what is causing the error.

Timothy Schmidt
Timothy Schmidt
4,806 Points

Post your code. It's most likely a syntax error.

1 Answer

Steven Parker
Steven Parker
229,644 Points

A "continue" is only valid within a loop.

Without seeing your code, this is a bit of a guess; but you might get this error message if you accidentally used this statement outside of a loop.

To enable a more complete and accurate analysis, show your code or make a snapshot of your workspace and post the link to it here.