C# 是一种现代、通用的编程语言,由微软在2000年发布。作为一种面向对象的语言,C# 提供了丰富的语法和功能,能够满足各种应用程序开发的需求。程序结构是编程语言的基础,决定了代码的组织和执行顺序。在所有的程序结构中,顺序结构是最基本的,它决定了程序的执行顺序从上到下,逐行执行代码。本篇文章将深入探讨C#中顺序结构的细节和应用,帮助读者更好地理解和掌握这一基础概念。

引言

顺序结构是所有程序中最基本的控制结构。它表示程序中的指令按它们在源代码中出现的顺序一条接一条地执行,直到程序结束。理解顺序结构是掌握编程的第一步,对于编写清晰、易懂、逻辑性强的代码至关重要。

基本语法和结构

C# 程序的基本结构

一个典型的C#程序包括以下几个部分:

  1. 命名空间声明:命名空间用于组织代码,避免名称冲突。
  2. 类定义:类是C#的基本构建块,包含数据和方法。
  3. 方法:方法是执行代码的地方,Main方法是程序的入口点。
  4. 语句:每个语句表示一个独立的操作,按照顺序执行。

以下是一个简单的C#程序的示例:

  1. using System;
  2. namespace HelloWorld
  3. {
  4. class Program
  5. {
  6. static void Main(string[] args)
  7. {
  8. Console.WriteLine("Hello, World!");
  9. }
  10. }
  11. }

在这个示例中,Main方法中的语句按顺序执行,首先是输出 “Hello, World!” 到控制台。

变量和常量

变量

变量是存储数据的命名空间。在C#中,变量必须先声明后使用,声明时需要指定变量的类型。变量的声明和赋值是顺序结构中的基本操作。

  1. int number; // 声明一个整数变量
  2. number = 10; // 给变量赋值

可以在声明时直接赋值:

  1. int number = 10; // 声明并赋值

常量

常量是指在程序执行过程中其值不会改变的变量。使用 const 关键字声明常量:

  1. const int MaxValue = 100;

常量在声明时必须初始化,并且之后不能改变它的值。

数据类型

C# 提供了丰富的数据类型,以满足不同的数据存储需求。数据类型分为值类型和引用类型。

值类型

值类型直接存储数据,常见的值类型包括:

  • 整型intshortlong
  • 浮点型floatdouble
  • 字符型char
  • 布尔型bool

示例:

  1. int age = 30;
  2. float temperature = 36.6f;
  3. char grade = 'A';
  4. bool isStudent = true;

引用类型

引用类型存储的是数据的引用,包括:

  • 字符串string
  • 数组array
  • class
  • 接口interface
  • 委托delegate

示例:

  1. string name = "Alice";
  2. int[] scores = { 90, 85, 100 };

运算符

运算符用于执行各种操作。C# 提供了多种运算符,包括算术运算符、关系运算符、逻辑运算符和赋值运算符。

算术运算符

用于执行基本的数学运算:

  • +:加法
  • -:减法
  • *:乘法
  • /:除法
  • %:取余

示例:

  1. int sum = 10 + 5; // 15
  2. int difference = 10 - 5; // 5
  3. int product = 10 * 5; // 50
  4. int quotient = 10 / 5; // 2
  5. int remainder = 10 % 3; // 1

关系运算符

用于比较两个值:

  • ==:等于
  • !=:不等于
  • >:大于
  • <:小于
  • >=:大于或等于
  • <=:小于或等于

示例:

  1. bool isEqual = (10 == 10); // true
  2. bool isNotEqual = (10 != 5); // true
  3. bool isGreater = (10 > 5); // true
  4. bool isLess = (5 < 10); // true

逻辑运算符

用于执行逻辑操作:

  • &&:逻辑与
  • ||:逻辑或
  • !:逻辑非

示例:

  1. bool result1 = (10 > 5) && (5 < 10); // true
  2. bool result2 = (10 > 5) || (5 > 10); // true
  3. bool result3 = !(10 > 5); // false

赋值运算符

用于给变量赋值:

  • =:赋值
  • +=:加法赋值
  • -=:减法赋值
  • *=:乘法赋值
  • /=:除法赋值
  • %=:取余赋值

示例:

  1. int a = 10;
  2. a += 5; // a = 15
  3. a -= 3; // a = 12
  4. a *= 2; // a = 24
  5. a /= 4; // a = 6
  6. a %= 5; // a = 1

输入和输出

输入和输出是程序与用户交互的重要部分。C# 提供了 Console 类来处理控制台的输入和输出。

输出

使用 Console.WriteLine 方法将文本输出到控制台:

  1. Console.WriteLine("Hello, World!");

输入

使用 Console.ReadLine 方法从控制台读取用户输入:

  1. Console.WriteLine("Enter your name:");
  2. string name = Console.ReadLine();
  3. Console.WriteLine($"Hello, {name}!");

控制结构

控制结构用于改变程序的执行顺序,主要包括条件语句和循环语句。虽然这些并不属于顺序结构的范畴,但理解它们对于全面掌握C#编程是必要的。

条件语句

条件语句根据表达式的真假来决定执行的代码块。

if 语句
  1. int number = 10;
  2. if (number > 0)
  3. {
  4. Console.WriteLine("Positive number");
  5. }
  6. else if (number < 0)
  7. {
  8. Console.WriteLine("Negative number");
  9. }
  10. else
  11. {
  12. Console.WriteLine("Zero");
  13. }
switch 语句
  1. int day = 3;
  2. switch (day)
  3. {
  4. case 1:
  5. Console.WriteLine("Monday");
  6. break;
  7. case 2:
  8. Console.WriteLine("Tuesday");
  9. break;
  10. case 3:
  11. Console.WriteLine("Wednesday");
  12. break;
  13. default:
  14. Console.WriteLine("Invalid day");
  15. break;
  16. }

循环语句

循环语句用于重复执行一段代码。

for 循环
  1. for (int i = 0; i < 10; i++)
  2. {
  3. Console.WriteLine(i);
  4. }
while 循环
  1. int i = 0;
  2. while (i < 10)
  3. {
  4. Console.WriteLine(i);
  5. i++;
  6. }
do-while 循环
  1. int i = 0;
  2. do
  3. {
  4. Console.WriteLine(i);
  5. i++;
  6. } while (i < 10);
foreach 循环
  1. int[] numbers = { 1, 2, 3, 4, 5 };
  2. foreach (int number in numbers)
  3. {
  4. Console.WriteLine(number);
  5. }

方法

方法是执行特定任务的代码块。方法可以接受参数,并返回值。

方法声明

  1. public int Add(int a, int b)
  2. {
  3. return a + b;
  4. }

方法调用

  1. int result = Add(5, 10);
  2. Console.WriteLine(result); // 输出 15

方法重载

方法重载是指在同一个类中可以定义多个具有相同名称但参数不同的方法。

  1. public int Add(int a, int b)
  2. {
  3. return a + b;
  4. }
  5. public double Add(double a, double b)
  6. {
  7. return a + b;
  8. }

可选参数

C# 支持为方法定义可选参数,如果调用方法时没有提供这些参数,则使用默认值。

  1. public void PrintMessage(string message = "Hello, World!")
  2. {
  3. Console.WriteLine(message);
  4. }
  5. PrintMessage(); // 输出 "Hello, World!"
  6. PrintMessage("Hi there!"); // 输出 "Hi there!"

类和对象

C# 是一种面向对象的编程语言,类和对象是其核心概念。

类的定义

  1. public class Person
  2. {
  3. public string Name { get; set; }
  4. public int Age { get; set; }
  5. public void Introduce()
  6. {
  7. Console.WriteLine($"Hi, I'm {Name} and I'm {Age} years old.");
  8. }
  9. }

创建对象

  1. Person person = new Person { Name = "Alice", Age = 25 };
  2. person.Introduce(); // 输出 "Hi, I'm Alice and I'm 25 years old."

继承

  1. public class Employee : Person
  2. {
  3. public string Company { get; set; }
  4. public void Work()
  5. {
  6. Console.WriteLine($"{Name} is working at {Company}.");
  7. }
  8. }
  9. Employee employee = new Employee { Name = "Bob", Age = 30, Company = "ACME Corp" };
  10. employee.Introduce(); // 输出 "Hi, I'm Bob and I'm 30 years old."
  11. employee.Work(); // 输出 "Bob is working at ACME Corp."

多态

多态允许使用基类的引用来调用子类的方法。

  1. public class Animal
  2. {
  3. public virtual void Speak()
  4. {
  5. Console.WriteLine("Animal speaks.");
  6. }
  7. }
  8. public class Dog : Animal
  9. {
  10. public override void Speak()
  11. {
  12. Console.WriteLine("Dog barks.");
  13. }
  14. }
  15. public class Cat : Animal
  16. {
  17. public override void Speak()
  18. {
  19. Console.WriteLine("Cat meows.");
  20. }
  21. }
  22. Animal myDog = new Dog();
  23. Animal myCat = new Cat();
  24. myDog.Speak(); // 输出 "Dog barks."
  25. myCat.Speak(); // 输出 "Cat meows."

异常处理

异常处理是指在程序运行过程中捕获和处理异常,以防止程序崩溃并提供有意义的错误信息。

try-catch 语句

  1. try
  2. {
  3. int result = 10 / 0;
  4. }
  5. catch (DivideByZeroException ex)
  6. {
  7. Console.WriteLine("Cannot divide by zero.");
  8. }
  9. catch (Exception ex)
  10. {
  11. Console.WriteLine("An error occurred: " + ex.Message);
  12. }

finally 语句

  1. try
  2. {
  3. int result = 10 / 0;
  4. }
  5. catch (DivideByZeroException ex)
  6. {
  7. Console.WriteLine("Cannot divide by zero.");
  8. }
  9. finally
  10. {
  11. Console.WriteLine("Execution completed.");
  12. }

抛出异常

  1. public void Divide(int a, int b)
  2. {
  3. if (b == 0)
  4. {
  5. throw new DivideByZeroException("Divisor cannot be zero.");
  6. }
  7. Console.WriteLine(a / b);
  8. }
  9. try
  10. {
  11. Divide(10, 0);
  12. }
  13. catch (DivideByZeroException ex)
  14. {
  15. Console.WriteLine(ex.Message);
  16. }

文件操作

C# 提供了丰富的文件操作类,用于读取和写入文件。

读取文件

  1. using System.IO;
  2. string path = "example.txt";
  3. using (StreamReader reader = new StreamReader(path))
  4. {
  5. string content = reader.ReadToEnd();
  6. Console.WriteLine(content);
  7. }

写入文件

  1. using System.IO;
  2. string path = "example.txt";
  3. string content = "Hello, world!";
  4. using (StreamWriter writer = new StreamWriter(path))
  5. {
  6. writer.WriteLine(content);
  7. }

文件存在性检查

  1. string path = "example.txt";
  2. if (File.Exists(path))
  3. {
  4. Console.WriteLine("File exists.");
  5. }
  6. else
  7. {
  8. Console.WriteLine("File does not exist.");
  9. }

异步编程

异步编程是一种编程模式,允许程序在等待某些操作完成时不阻塞主线程。

async 和 await 关键字

  1. using System.Net.Http;
  2. using System.Threading.Tasks;
  3. public async Task<string> FetchDataAsync(string url)
  4. {
  5. using (HttpClient client = new HttpClient())
  6. {
  7. string result = await client.GetStringAsync(url);
  8. return result;
  9. }
  10. }
  11. async Task Main()
  12. {
  13. string data = await FetchDataAsync("http://example.com");
  14. Console.WriteLine(data);
  15. }

Task 类

  1. public async Task<int> ComputeAsync(int a, int b)
  2. {
  3. return await Task.Run(() =>
  4. {
  5. // 模拟长时间计算
  6. System.Threading.Thread.Sleep(2000);
  7. return a + b;
  8. });
  9. }
  10. async Task Main()
  11. {
  12. int result = await ComputeAsync(5, 10);
  13. Console.WriteLine(result); // 输出 15
  14. }

事件

事件是一种用于在对象之间传递消息的机制,常用于实现事件驱动编程。

定义事件

  1. public class Alarm
  2. {
  3. public event EventHandler Ring;
  4. public void Trigger()
  5. {
  6. if (Ring != null)
  7. {
  8. Ring(this, EventArgs.Empty);
  9. }
  10. }
  11. }

订阅和触发事件

  1. public class Program
  2. {
  3. static void Main()
  4. {
  5. Alarm alarm = new Alarm();
  6. alarm.Ring += Alarm_Ring;
  7. alarm.Trigger();
  8. }
  9. private static void Alarm_Ring(object sender, EventArgs e)
  10. {
  11. Console.WriteLine("Alarm triggered!");
  12. }
  13. }

委托

委托是C#中的一种类型安全的函数指针,允许你将方法作为参数传递。

定义委托

  1. public delegate void Notify(string message);

使用委托

  1. public class Program
  2. {
  3. public static void Main()
  4. {
  5. Notify notify = new Notify(ShowMessage);
  6. notify("Hello, delegates!");
  7. }
  8. public static void ShowMessage(string message)
  9. {
  10. Console.WriteLine(message);
  11. }
  12. }

多播委托

多播委托可以指向多个方法,并依次调用这些方法。

  1. public delegate void Notify(string message);
  2. public class Program
  3. {
  4. public static void Main()
  5. {
  6. Notify notify = ShowMessage;
  7. notify += ShowAnotherMessage;
  8. notify("Hello, delegates!");
  9. }
  10. public static void ShowMessage(string message)
  11. {
  12. Console.WriteLine("Message: " + message);
  13. }
  14. public static void ShowAnotherMessage(string message)
  15. {
  16. Console.WriteLine("Another message: " + message);
  17. }
  18. }

Lambda 表达式

Lambda 表达式是一种简洁的匿名函数语法,常用于简化委托和 LINQ 表达式。

定义 Lambda 表达式

  1. Func<int, int, int> add = (a, b) => a + b;
  2. int result = add(5, 10); // 输出 15

Lambda 表达式与 LINQ

结合 Lambda 表达式和 LINQ 查询数据:

  1. int[] numbers = { 1, 2, 3, 4, 5 };
  2. var evenNumbers = numbers.Where(n => n % 2 == 0);
  3. foreach (int number in evenNumbers)
  4. {
  5. Console.WriteLine(number); // 输出 2 4
  6. }

LINQ

语言集成查询(LINQ)是一种查询数据的功能,允许你使用类似SQL的语法来查询集合。

LINQ 查询语法

使用 LINQ 查询语法查询数据:

  1. int[] numbers = { 1, 2, 3, 4, 5 };
  2. var evenNumbers = from number in numbers
  3. where number % 2 == 0
  4. select number;
  5. foreach (int number in evenNumbers)
  6. {
  7. Console.WriteLine(number); // 输出 2 4
  8. }

LINQ 方法语法

使用 LINQ 方法语法查询数据:

  1. int[] numbers = { 1, 2, 3, 4, 5 };
  2. var evenNumbers = numbers.Where(n => n % 2 == 0).Select(n => n);
  3. foreach (int number in evenNumbers)
  4. {
  5. Console.WriteLine(number); // 输出 2 4
  6. }

属性

属性是类中的变量,通过访问器(getter 和 setter)来控制对这些变量的访问。

自动属性

使用自动属性简化属性定义:

  1. public class Person
  2. {
  3. public string Name { get; set; }
  4. public int Age { get; set; }
  5. }

手动属性

使用手动属性定义带有访问器的属性:

  1. public class Person
  2. {
  3. private int age;
  4. public int Age
  5. {
  6. get { return age; }
  7. set
  8. {
  9. if (value >= 0)
  10. {
  11. age = value;
  12. }
  13. }
  14. }
  15. }

索引器

索引器允许类像数组一样通过索引访问其内部数据。

定义索引器

使用 this 关键字定义索引器:

  1. public class DataCollection
  2. {
  3. private int[] data = new int[10];
  4. public int this[int index]
  5. {
  6. get { return data[index]; }
  7. set
  8. { data[index] = value; }
  9. }
  10. }

使用索引器

创建对象并通过索引器访问数据:

  1. DataCollection collection = new DataCollection();
  2. collection[0] = 42;
  3. int value = collection[0]; // 42

接口

接口定义了一组方法和属性的规范,而不提供实现。

定义接口

使用 interface 关键字定义接口:

  1. public interface IMovable
  2. {
  3. void Move();
  4. }

实现接口

使用 : 符号实现接口:

  1. public class Car : IMovable
  2. {
  3. public void Move()
  4. {
  5. Console.WriteLine("Car is moving.");
  6. }
  7. }

接口多重继承

一个类可以实现多个接口:

  1. public interface IFlyable
  2. {
  3. void Fly();
  4. }
  5. public class FlyingCar : IMovable, IFlyable
  6. {
  7. public void Move()
  8. {
  9. Console.WriteLine("FlyingCar is moving.");
  10. }
  11. public void Fly()
  12. {
  13. Console.WriteLine("FlyingCar is flying.");
  14. }
  15. }

抽象类

抽象类是不能被实例化的类,通常用于作为其他类的基类。

定义抽象类

使用 abstract 关键字定义抽象类和抽象方法:

  1. public abstract class Animal
  2. {
  3. public abstract void Speak();
  4. }

继承抽象类

使用 override 关键字重写抽象方法:

  1. public class Dog : Animal
  2. {
  3. public override void Speak()
  4. {
  5. Console.WriteLine("Dog barks.");
  6. }
  7. }
  8. public class Cat : Animal
  9. {
  10. public override void Speak()
  11. {
  12. Console.WriteLine("Cat meows.");
  13. }
  14. }

枚举

枚举是定义一组命名常量的类型,通常用于表示一组相关的值。

定义枚举

使用 enum 关键字定义枚举:

  1. public enum DaysOfWeek
  2. {
  3. Sunday,
  4. Monday,
  5. Tuesday,
  6. Wednesday,
  7. Thursday,
  8. Friday,
  9. Saturday
  10. }

使用枚举

创建枚举变量并赋值:

  1. DaysOfWeek today = DaysOfWeek.Monday;
  2. if (today == DaysOfWeek.Monday)
  3. {
  4. Console.WriteLine("Today is Monday.");
  5. }

嵌套类

嵌套类是定义在另一个类内部的类,用于组织相关的类。

定义嵌套类

在外部类内部定义嵌套类:

  1. public class OuterClass
  2. {
  3. public class NestedClass
  4. {
  5. public void Display()
  6. {
  7. Console.WriteLine("This is a nested class.");
  8. }
  9. }
  10. }

使用嵌套类

创建嵌套类的实例并调用其方法:

  1. OuterClass.NestedClass nested = new OuterClass.NestedClass();
  2. nested.Display(); // 输出 "This is a nested class."

泛型

泛型允许定义类、接口和方法时使用类型参数,从而使代码更加通用和类型安全。

泛型类

定义泛型类:

  1. public class GenericList<T>
  2. {
  3. private T[] items = new T[100];
  4. private int count = 0;
  5. public void Add(T item)
  6. {
  7. items[count++] = item;
  8. }
  9. public T Get(int index)
  10. {
  11. return items[index];
  12. }
  13. }
  14. GenericList<int> intList = new GenericList<int>();
  15. intList.Add(1);
  16. intList.Add(2);
  17. Console.WriteLine(intList.Get(1)); // 输出 2

泛型方法

定义泛型方法:

  1. public class Utilities
  2. {
  3. public T Max<T>(T a, T b) where T : IComparable<T>
  4. {
  5. return a.CompareTo(b) > 0 ? a : b;
  6. }
  7. }
  8. Utilities utilities = new Utilities();
  9. int maxInt = utilities.Max(10, 20); // 20
  10. string maxString = utilities.Max("apple", "banana"); // "banana"

扩展方法

扩展方法允许向现有类型添加新方法,而无需修改类型本身。扩展方法必须在静态类中定义,并且第一个参数使用 this 关键字指定要扩展的类型。

定义扩展方法

示例代码:

  1. public static class StringExtensions
  2. {
  3. public static int WordCount(this string str)
  4. {
  5. return str.Split(new char[] { ' ', '.', '?' }, StringSplitOptions.RemoveEmptyEntries).Length;
  6. }
  7. }
  8. string text = "Hello, world!";
  9. int count = text.WordCount();
  10. Console.WriteLine($"Word count: {count}"); // 输出 "Word count: 2"

空值处理

C# 提供了一些工具来处理可能为空的引用类型和值类型。

可空类型

可空类型允许值类型可以为 null,使用 ? 语法表示。

示例代码:

  1. int? nullableInt = null;
  2. if (nullableInt.HasValue)
  3. {
  4. Console.WriteLine($"Value: {nullableInt.Value}");
  5. }
  6. else
  7. {
  8. Console.WriteLine("Value is null");
  9. }

空合并运算符

空合并运算符 ?? 用于简化空值检查和默认值赋值。

示例代码:

  1. string message = null;
  2. string displayMessage = message ?? "Default message";
  3. Console.WriteLine(displayMessage); // 输出 "Default message"

空条件运算符

空条件运算符 ?. 用于安全地调用可能为空的对象成员。

示例代码:

  1. Person person = null;
  2. int? age = person?.Age;
  3. Console.WriteLine($"Age: {age}"); // 输出 "Age: "

类型比较

类型比较是指在运行时检查对象的类型,以便根据类型执行不同的操作。

使用 is 运算符

is 运算符用于检查对象是否为指定类型。

示例代码:

  1. object obj = "Hello, world!";
  2. if (obj is string)
  3. {
  4. Console.WriteLine("obj is a string");
  5. }

使用 as 运算符

as 运算符用于尝试将对象转换为指定类型,如果转换失败,则返回 null

示例代码:

  1. object obj = "Hello, world!";
  2. string str = obj as string;
  3. if (str != null)
  4. {
  5. Console.WriteLine("Conversion succeeded");
  6. }
  7. else
  8. {
  9. Console.WriteLine("Conversion failed");
  10. }

类型转换和模式匹配

C# 提供了多种类型转换和模式匹配的方法,使得代码更简洁、更安全。

模式匹配

C# 7.0 引入了模式匹配语法,允许在 switch 语句和 is 表达式中使用模式匹配。

示例代码:

  1. object obj = "Hello, world!";
  2. if (obj is string str)
  3. {
  4. Console.WriteLine($"String length: {str.Length}");
  5. }
  6. switch (obj)
  7. {
  8. case int i:
  9. Console.WriteLine($"Integer: {i}");
  10. break;
  11. case string s:
  12. Console.WriteLine($"String: {s}");
  13. break;
  14. default:
  15. Console.WriteLine("Unknown type");
  16. break;
  17. }

异常处理

异常处理是捕获和处理运行时错误的重要机制。C# 提供了丰富的异常处理工具,包括自定义异常、异常过滤器等。

自定义异常

自定义异常类继承自 Exception 类。

示例代码:

  1. public class CustomException : Exception
  2. {
  3. public CustomException(string message) : base(message) { }
  4. }
  5. public class Program
  6. {
  7. public static void Main()
  8. {
  9. try
  10. {
  11. throw new CustomException("This is a custom exception.");
  12. }
  13. catch (CustomException ex)
  14. {
  15. Console.WriteLine(ex.Message);
  16. }
  17. }
  18. }

异常过滤器

异常过滤器允许根据条件捕获异常。

示例代码:

  1. try
  2. {
  3. throw new InvalidOperationException("Invalid operation");
  4. }
  5. catch (Exception ex) when (ex.Message.Contains("Invalid"))
  6. {
  7. Console.WriteLine("Caught invalid operation exception");
  8. }

类型推断和异步编程

C# 支持类型推断和异步编程,使代码更加简洁和高效。

异步编程

异步编程允许在不阻塞主线程的情况下执行长时间运行的操作。

示例代码:

  1. using System.Net.Http;
  2. using System.Threading.Tasks;
  3. public class Program
  4. {
  5. public static async Task Main()
  6. {
  7. string url = "http://example.com";
  8. string content = await FetchContentAsync(url);
  9. Console.WriteLine(content);
  10. }
  11. public static async Task<string> FetchContentAsync(string url)
  12. {
  13. using (HttpClient client = new HttpClient())
  14. {
  15. return await client.GetStringAsync(url);
  16. }
  17. }
  18. }

反射

反射是一种在运行时检查和操作类型信息的机制。它允许动态创建对象、调用方法和访问字段和属性。

使用反射获取类型信息

示例代码:

  1. using System;
  2. using System.Reflection;
  3. public class Person
  4. {
  5. public string Name { get; set; }
  6. public int Age { get; set; }
  7. public void Introduce()
  8. {
  9. Console.WriteLine($"Hi, I'm {Name} and I'm {Age} years old.");
  10. }
  11. }
  12. Type type = typeof(Person);
  13. Console.WriteLine($"Type: {type.Name}");
  14. PropertyInfo[] properties = type.GetProperties();
  15. foreach (PropertyInfo property in properties)
  16. {
  17. Console.WriteLine($"Property: {property.Name}");
  18. }
  19. MethodInfo method = type.GetMethod("Introduce");
  20. Console.WriteLine($"Method: {method.Name}");

动态调用方法

示例代码:

  1. Person person = new Person { Name = "Alice", Age = 25 };
  2. MethodInfo method = typeof(Person).GetMethod("Introduce");
  3. method.Invoke(person, null); // 输出 "Hi, I'm Alice and I'm 25 years old."

总结

C# 的顺序结构是编程的基础,通过学习顺序结构,开发者可以掌握如何按顺序执行代码,声明和使用变量,处理输入输出,使用基本运算符和控制结构。顺序结构在所有编程语言中都是最基本的部分,理解它是掌握编程的第一步。希望本文能够帮助读者全面了解C#的顺序结构,并在实际编程中灵活运用。