码迷,mamicode.com
首页 > Windows程序 > 详细

C#第一次作业(hallow world)

时间:2015-03-16 22:55:54      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

/*namespace hallowword
{
class Program
{
static void Main(string[] args)
{
// Use the system console object
System.Console.WriteLine("Hello World!");
}
}
}*/
class Hello
{
int someVariableName;
static void Main(string[] args)
{
// Use the system console object
Console.BackgroundColor = ConsoleColor.Red;
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine("Hello World!");
}
}

技术分享

稍微有点理解错误,导致中间做错了一次,不过严格意义上说也没做错,不过加入颜色时候问题不大。

C#第一次作业(hallow world)

标签:

原文地址:http://www.cnblogs.com/sunset-scarlet/p/4343034.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!