📜  {} 用于 c# 代码示例中的代码块

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

代码示例1
/* code blocks are the lines of code between {} */
// for example
if (1==1) 
{
  Console.WriteLine("fact"); }
// the code block would be Console.WriteLine("fact"); not sure if {} is 
// included in it.