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 trialSachini Hansini Nawalaella
2,842 Pointsternary 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?
int value=-1;
string textColor = null;
textColor = (value < 0 ) ? {"red"}:{"green"} ;
3 Answers
aiden1408
3,338 PointstextColor = value < 0 ? "red" : "green";
aiden1408
3,338 PointsBecause 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.
Kayvon Wallace
15,686 Points"is this condition true ? yes : no" https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/operators/conditional-operator#code-try-4
fodhil zidane
24,020 PointstextColor = (value < 0) ? "red" : "green";
Sachini Hansini Nawalaella
2,842 PointsSachini Hansini Nawalaella
2,842 Pointsthank you.. i found my error..
James Hammond
1,297 PointsJames Hammond
1,297 Pointswhy wont something like this work?
int value = -1;
string textColor = (value < 0 textColor = "red") ? (textColor = "green");