摘要: MVC学习之前必须掌握的c#基础知识 一.类自动属性 public class Person { //自动属性 public string Name { get; set; } private int _age; public int age { get { return _age; } set { 阅读全文
posted @ 2019-12-06 19:39 秋飘 阅读(190) 评论(0) 推荐(0) 编辑