C# language specification定义了空语句语法的产生,这使我可以执行以下操作:
static void Main(string[] args)
{
; ; ;
}
微软为什么要在C#语言中包含这种语法生成方式?它有有用的目的吗?
最佳答案
while (GetWhitespace(textStream))
;
C# language specification定义了空语句语法的产生,这使我可以执行以下操作:
static void Main(string[] args)
{
; ; ;
}
最佳答案
while (GetWhitespace(textStream))
;