C#简介

C# 是一个简单的、现代的、通用的、面向对象的编程语言,它是由微软(Microsoft)开发的。

编译/执行 C# 程序



using System;
namespace HelloWorldApplication
{
   /* 类名为 HelloWorld */
   class HelloWorld
   {
       /* main函数 */
       static void Main(string[] args)
{
           /* 我的第一个 C# 程序 */
           Console.WriteLine("Hello World!");
           Console.ReadKey();
       }
   }
}

C# 有用的网站

C# Programming Guide - 介绍了有关关键的 C# 语言特征以及如何通过 .NET 框架访问 C# 的详细信息。

Visual Studio - 下载作为 C# 集成开发环境的 Visual Studio 的最新版本。

Go Mono - Mono 是一个允许开发人员简单地创建跨平台应用程序的软件平台。

C Sharp (programming language) - 维基百科解释 C#(编程语言)。

编写一个c#程序_c#


长按二维码关注我

编写一个c#程序_二维码_02