构造函数中的mvc控制器无法正常工作

时间:2014-02-01 10:11:49

标签: asp.net-mvc

你好我的控制器类 我做了一个构造函数但构造函数不起作用(调试跳过 谢谢

  public class CrewController : Controller
{
    public CrewController()
    {

        string d = "test";
    }
}

1 个答案:

答案 0 :(得分:0)

试试这个

 public class CrewController : Controller
{
    string d ="";
    public CrewController()
    {

        d = "test";
    }
}