📜  如何在 c# 代码示例中执行其他操作

📅  最后修改于: 2022-03-11 14:48:47.489000             🧑  作者: Mango

代码示例1
if (condition)
{
  // block of code to be executed if the condition is True
} 
else 
{
  // block of code to be executed if the condition is False
}