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 Variable Scope

Andrada Terenche
Andrada Terenche
1,103 Points

Cannot solve try/catch Code Challenge.

I cannot complete the challenge for this video. I tried in different ways, but I'm just stuck.

Steven Parker
Steven Parker
230,274 Points

Show your code from your best attempt, and we can help you fix it.

2 Answers

Steven Parker
Steven Parker
230,274 Points

Here's some general hints:

There are several issues with the provided code that need fixing. Some things to remember:

  • a variable should only be declared once
  • a variable should be declared in the outermost scope it is used in
  • a variable already declared can be assigned any number of times

I looked at the code in the challenge. It shows that input was used, but it was never declared. In order to use it, you must first give it a type in its instantiation, like:

string variablename = Console.ReadLine();