📌  相关文章
📜  我什么时候需要用 ; 来结束一个句子在 c# 代码示例中

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

代码示例1
//after every sentence like int a,b ;
//and not in a places like this :
if(a <= b) 
{
  //you don't place ; in the } place
  Console.WriteLine("a <= b"); //after this you need to place ;
}