Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

C# 入门


C# IDE

开始学习 C# 的最简单方法是使用 IDE。

IDE (集成开发环境) 用于编辑和编译代码。

在本教程中,我们将使用 Visual Studio Community,它可以从 https://visualstudio.microsoft.com/vs/community/ 免费下载。

用 C# 编写的应用程序使用 .NET Framework,因此使用 Visual Studio 是有道理的,因为该程序、框架和语言都是由 Microsoft 创建的。


C# 安装

下载并安装 Visual Studio 安装程序后,选择 .NET 工作负载,然后单击“修改/安装”按钮。

安装完成后,单击“启动”按钮开始使用 Visual Studio。

在启动窗口中,选择“创建新项目”。

然后单击“安装更多工具和功能”链接。

从列表中选择“控制台应用程序 (.NET Core)”,然后单击“下一步”按钮。

为您的项目输入一个名称,然后单击“创建”按钮。

Visual Studio 会自动为您的项目生成一些代码。

代码应如下所示

Program.cs

using System;

namespace HelloWorld
{
  class Program
  {
    static void Main(string[] args)
    {
      Console.WriteLine("Hello World!");    
    }
  }
}

自己试试 »

如果您不理解上面的代码,不用担心 - 我们将在后面的章节中详细讨论。现在,专注于如何运行代码。

通过按下键盘上的 F5 键运行程序(或单击“调试”->“开始调试”)。这将编译并执行您的代码。结果将类似于以下内容

Hello World!
C:\Users\Username\source\repos\HelloWorld\HelloWorld\bin\Debug\netcoreapp3.0\HelloWorld.exe (进程 13784) 已退出,代码为 0。
要在调试停止时自动关闭控制台,请启用工具->选项->调试->调试停止时自动关闭控制台。
按任意键关闭此窗口 . . .

恭喜!您现在已经编写并执行了您的第一个 C# 程序。


在 W3Schools 学习 C#

在 W3Schools.com 上学习 C# 时,您可以使用我们的“自己试试”工具,该工具显示代码和结果。这将使您更容易理解我们前进过程中的每个部分。

Program.cs

using System;

namespace HelloWorld
{
  class Program
  {
    static void Main(string[] args)
    {
      Console.WriteLine("Hello World!");    
    }
  }
}

结果

Hello World!

自己试试 »


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.