C#第一堂课
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#第一堂课相关的知识,希望对你有一定的参考价值。
using System;namespace HelloWorldApplication
{
/ 类名为 HelloWorld /
class HelloWorld
{
/ main函数 /
static void Main(string[] args)
{
/ 我的第一个 C# 程序 /
Console.WriteLine("Hello World!");
Console.ReadKey();
}
}
}
以上是关于C#第一堂课的主要内容,如果未能解决你的问题,请参考以下文章