最佳答案
为什么 C # 允许没有前面语句的代码块(例如 if
、 else
、 for
、 while
) ?
void Main()
{
{ // any sense in this?
Console.Write("foo");
}
}