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

ternary if- c#

In the previous video, we saw how a ternary if statement could be used in place of an if/else statement to determine the value to return from a method. Ternary if statements can also be used to determine the value to use when initializing a variable. Use a ternary if statement instead of an if/else statement to initialize the textColor variable to the string value "red" if the value variable is less than "0", otherwise initialize the textColor variable to the string value "green".

WHERE DID I GET WRONG?

CodeChallenge.cs
int value=-1;
string textColor = null;
textColor = (value < 0 ) ? {"red"}:{"green"} ;

3 Answers

textColor = value < 0 ? "red" : "green";

thank you.. i found my error..

James Hammond
James Hammond
1,297 Points

why wont something like this work?

int value = -1;

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

Because you are already assigning whats on the right, to the left. You do not have to do it again inside the ternary if. Also, the syntax is wrong. The comparison argument comes before the question mark, then the result upon a true comparison, then a colon, and the result upon a false comparison at the end.

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