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

Why isn't this code working?

I someone could please explain why this isn't working in a way that i could under stant, that would be great.

CodeChallenge.cs
string heightInput = "168";
int height;

height = height + 10;

height = int.Parse(heightInput);

1 Answer

Henrik Christensen
seal-mask
.a{fill-rule:evenodd;}techdegree
Henrik Christensen
Python Web Development Techdegree Student 38,322 Points

The order matters because the program read from top to buttom

  • Parse heightInput to an integer so that height = 168
  • Then add 10 to height

but your order is

  • Setting **height* to 10
  • Then parse heightInput to an integer and then set height to 168
string heightInput = "168";
int height;  // here height is = 0

height = height + 10; // now you're adding 10 to height

height = int.Parse(heightInput); // here you set height to 168

Thanks! that makes a lot more sense!