📜  as c# (1)

📅  最后修改于: 2023-12-03 14:39:21.346000             🧑  作者: Mango

C# 简介

C# 是一种现代、通用的编程语言,用于开发 Windows 应用程序、Web 应用程序、游戏、移动应用程序等。C# 是 Microsoft 公司开发的一种面向对象的编程语言,是 .NET 框架中的主要语言之一。

特点
  • 面向对象
  • 简单、现代、通用
  • 安全
  • 高效
  • 支持多种编程范式(过程式、面向对象、函数式等)
  • 支持 LINQ 查询技术
  • 支持生成 XML 文档来描述代码
语法
基础语法
using System;

namespace HelloWorld
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
        }
    }
}
变量和数据类型
int age = 30;
string name = "John";
double price = 19.99;
bool isTrue = true;
循环
for (int i = 0; i < 10; i++)
{
    Console.WriteLine(i);
}

while (isTrue)
{
    Console.WriteLine("Hello World!");
}

do
{
    Console.WriteLine("Hello World!");
} while (isTrue);
分支
if (age >= 18)
{
    Console.WriteLine("You are an adult.");
}
else
{
    Console.WriteLine("You are a child.");
}

switch (mark)
{
    case 90:
        Console.WriteLine("Excellent!");
        break;
    case 80:
        Console.WriteLine("Good!");
        break;
    default:
        Console.WriteLine("Pass!");
        break;
}
开发环境
  • Visual Studio
  • Visual Studio Code
  • .NET Core SDK
学习资源