1、C#是这样开始的:
函数入口:static void Main(String [] args){}
2、Hello World 例子
using system;--------导入命名空间,里面有相关类库
namespace helloworldSample---------命名空间,是可选的
{
class Program----------类名,C# 一切都在类里面的,所以所有必需以类开始
{
static void Main(String [] args)
{
Console.WriteLine ("Hello World!");
};
}
}
|
请发表评论