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# Objects Encapsulation and Arrays Ternary If

Stuck on task

Hi,

I`m stuck on this task with error: "Did you include the boolean expression to evaluate?". Can somebody explain in more details what is the problem?

CodeChallenge.cs
int value = -1;
string textColor = null;

return (value < 0) ? textColor = "red" : textColor = "green";

1 Answer

Steven Parker
Steven Parker
229,785 Points

The boolean expression is OK, but there are other issues:

  • a "return" statement is only valid inside a function and cannot be used here
  • after the boolean expression, the other ternary terms should just be values and not assignment statements
  • the entire ternary should be assigned to "textColor"

Hi Steven,

Took a while and some internet resources to understand it, but I got the answer now.

Thanks! :)