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#

exit compiling error

when typing exit get a long error message have checked and again and re-watched video but cannot seem to find where my error is hiding work-space snapshot ..... https://w.trhou.se/2oikyxl4yb

1 Answer

Steven Parker
Steven Parker
229,732 Points

:point_right: Your program does no input validation.

There's nothing special about "exit", you could get the same error typing "banana". When the program attempts to convert the input to a number, it causes an error. The only non-number the program can currently handle is "quit".

There's nothing wrong, later in the course you will learn how to catch exceptions and handle errors like this.