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

tenary operator answe not working

i keep getting a bummer message asking whether i made a bool

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

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

1 Answer

Steven Parker
Steven Parker
229,644 Points

The parentheses enclose "the boolean expression to evaluate" — you have that part correct but the checker is probably confused by the rest of the syntax.

Remember that the entire ternary is an expression, so it would not normally contain assignment statements, though it's common for it to be used in one.

A typical use of a ternary might have a structure like this:

somevariable = conditional_expression ? value_if_true : value_if_false;

And don't forget that textColor is the variable being assigned, you won't need to create a new one.