2014年5月30日 星期五

if..else 在C# The syntax of an if...else statement in C#

if(boolean_expression)
{
   /* statement(s) will execute if the boolean expression is true */
}
else
{
  /* statement(s) will execute if the boolean expression is false */
}

沒有留言:

張貼留言