C# has what is known as the "tertiary operator", which works like this:
booleanExpression ? trueValue : falseValue;
In practise, this is used like this:
int count = GetItemCount();
// Change display text depending on count
string itemText = count > 1 ? "items" : "item";
Console.WriteLine("Found {0} {1}", count, itemText);