Main方法下输出Hello World!
如题:完成如下代码,使其输出“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))
谢谢分享!!! @ibcadmin
没看懂= =
求稍微解释下。。。。:dizzy: 空色 发表于 2013-11-1 00:06
@ibcadmin
没看懂= =
求稍微解释下。。。。
这就是个技巧性的问题,新手不用看 ibcadmin 发表于 2013-11-1 10:00
这就是个技巧性的问题,新手不用看
哦哦,那等我以后再回来看吧0 0
页:
[1]