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 trialTenecia Offutt
12,108 PointsConvert the string in heightInput to an integer using int.Parse. Store the result in a variable named height.
May I have assistance with this challenge please?
1 Answer
Steven Parker
231,236 PointsWhen you store a value, you generally use an assignment. The assignment operator is an equal-sign ("="). On the left side of the operator, you put the variable name that you are storing into. On the right side, you put the value to be stored.
In this case the value will be the result of calling the method "int.Parse" and passing it the variable that contains the string as an argument. And when you call a function or method, you always put parentheses after its name. Any arguments being passed go inside the parentheses.
I'll bet you can get it now!