📜  如果统一 - C# 代码示例

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

代码示例1
if () { // Put a condition in ().
    // If the condition is true then whatever is in here will happen.
} else if () { // Put a different condition in ().
    // If the if else condition is true then whatever is in here will happen.
} else { // If it doesn't equal any of the conditions.
    // If both conditions are false then this will happen.
}