
自动属性后,系统自动会给你生成一个私有字段。
快捷键
自动属性:prop tap tap
普通属性:ctrl r e
using System;using System.Collections.Generic;using System.Text;namespace _093_自动属性和普通属性{class Person{private string _name;public string Name{get => _name;set => _name = value;}private int _age;/// <summary>/// 自动属性/// </summary>public int Age{get;set;}}}
