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

Jory Braun
Jory Braun
7,814 Points

Uh this is dumb, error: Did you include the boolean expression to evaluate? (value < 0) ?

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

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

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

2 Answers

William Li
PLUS
William Li
Courses Plus Student 26,868 Points

Hi Jory,

I haven't taken this C# course, but usually I write the C# ternary this way.

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

Hope you find it helpful.

Jory Braun
Jory Braun
7,814 Points

that is far sexier

Jory Braun
Jory Braun
7,814 Points

but the question is very vague, I don't know why this wouldn't pass. This is my biggest complaint about treehosue. You get an error some times for no rhyme or particular reason.

Charles Parko
Charles Parko
2,012 Points

I don't have an answer, but will add, that I have no idea why your code (which is identical to mine) didn't pass. I did exactly what the instructor shows in the video. It would be really nice if after awhile, we got an explanation around what's wrong.