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

Marwa Almoqbali
Marwa Almoqbali
639 Points

convert string to integer

when i finished the video of converting string to integer i go to the quiz but i can not get the correct answer so they asked me to convert the string into interger and store it in variable height? string heightInput = "168"; int.Parse("heightInput"); int height = int.Parse("heightInput"); is the program correct?

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

1 Answer

Daniel Breen
Daniel Breen
14,943 Points

Hi Marwa,

Close! Two things:

The second and 3rd line are redundant. They both do the same thing, but you're not storing the result from line two anywhere. Remove line 2.

You need to pass in the variable heighInput, not the string "heightInput ". Just remove the quote marks and the extra space that you have before the last quote mark.