C# language specification定义了空语句语法生成,它允许我做这样的事情: static void Main(string[] args){ ; ; ;} 为什么Microsoft会在C#语言中包含这种语法生成?它有用吗? while (GetWhitespace(textStream)
static void Main(string[] args) { ; ; ; }
为什么Microsoft会在C#语言中包含这种语法生成?它有用吗?
while (GetWhitespace(textStream)) ;