111,126
社区成员
发帖
与我相关
我的任务
分享
class Program
{
static string msg = string.Empty;
static void Main(string[] args)
{
if (args.Length > 0)
{
while (true)
{
Console.WriteLine(msg);
Thread.Sleep(2000);
}
}
msg = Console.ReadLine();
Console.ReadLine();
}
}
我来看看。。。