Here is a standard if … then statement in C# followed by a single line example. Using a single line if statement will reduce the number of lines of code.
if (dayOfTheWeek == “Tuesday”) { lunchLocation = “Fuddruckers”; } else { lunchLocation = “Food Court”; }
And the same example as a single line if … then statement.
lunchLocation = (dayOfTheWeek == “Tuesday”) ? “Fuddruckers” : “Food Court”;
Comments
Alex
August 27 at 2014 at 2:25 PM
Thank you, sir.
unknown
September 30 at 2014 at 8:24 AM
Thank you very much, this is really helpful.