为什么三元运算符?:不能用作语句?

时间:2017-01-19 07:34:46

标签: c#

我没有使用if,而是尝试使用?:运算符,如下所示。但是,编译器会产生错误。为什么三元运算符?:不能用作语句?

static void Main(string[] args)
{
    bool IsPrint = false;

    IsPrint == true ? Console.WriteLine("Printing is allowed.") : Console.WriteLine("Printing is disabled.");
}

0 个答案:

没有答案