csharp Conditional Operator
//syntax: expression ? true : false; //example: int a = 1; int b = 2; string result; result = (a > b ? "a is greater than b" : "b is greater than a"); //result = "b is greater than a"
Example usage of the Conditional Operator: http://msdn.microsoft.com/en-us/library/ty67wk28(vs.71).aspx
Updated: Thursday 4th November 2010, 10:53pm
There are 0 comments
Comments are currently closed.