MVC Action 接收model 中属性默认值

MVC Action 接收model 中属性默认值

不能设置为

public int i=-1;

只能用构造函数初始化

public class class1

{

    public class1()

    {

        i=-1;

    }
 

    public int i {get ;set ;}

}

posted @ 2021-01-05 12:53  不要摸我的腰  阅读(122)  评论(0编辑  收藏  举报