1. 类的基本概念
在C#中,类是一种引用类型,用于定义对象的模板。类可以包含字段(Field)、属性(Property)、方法(Method)、事件(Event)等成员。对象是类的实例,通过类的构造函数创建。
2. 类的声明和使用
你可以使用class
关键字来声明一个类:
public class Person
{// 字段private string name;private int age;// 构造函数public Person(string name, int age){this.name = name;this.age = age;}// 属性public string Name{get { return name; }set { name = value; }}public int Age{get { return age; }set { age = value; }}// 方法public void DisplayInfo(){Console.WriteLine($"Name: {name}, Age: {age}")