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 Converting Strings to Integers

What is the syntax error that occurs with my code?

The third line shows the syntax error which I am not able to understand?

CodeChallenge.cs
string heightInput = "168";
int height = int.Parse(heightInput);
int height = height + 10;

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there! You're doing great, but you're not declaring height just once. You're declaring it twice. Remember, when we first declare a variable we start by giving a data type. So when you say int height you are overwriting what you previously had. You've already made the height variable, now you just need to use it.

height = height + 10;

or alternatively

height += 10;

Hope this helps! :sparkles: