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

chris muhirwa
chris muhirwa
1,112 Points

n the previous video, we saw how a ternary if statement could be used in place of an if/else statement to determine the

n 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".

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

if (value < 0)
{
    textColor = "red"; textColor = "green";
}

1 Answer

Brandon Pence
Brandon Pence
1,089 Points

Had the same question, see this previous post for correct syntax:

https://teamtreehouse.com/community/ternary-if-c