标签: c#
我没有使用if,而是尝试使用?:运算符,如下所示。但是,编译器会产生错误。为什么三元运算符?:不能用作语句?
if
?:
static void Main(string[] args) { bool IsPrint = false; IsPrint == true ? Console.WriteLine("Printing is allowed.") : Console.WriteLine("Printing is disabled."); }