如题:
[C#] 纯文本查看 复制代码 完成如下代码,使其输出“Hello World!”
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
if (/* 补充这里 */)
Console.Write("Hello");
else
Console.Write(" World!");
}
}
}
两种解决方案:
if (new Func<bool>(() => { Console.Write("Hello"); return false; }).Invoke())
if ((args == null||Main(null) is object))
|