你好我的控制器类 我做了一个构造函数但构造函数不起作用(调试跳过 谢谢
public class CrewController : Controller
{
public CrewController()
{
string d = "test";
}
}
答案 0 :(得分:0)
试试这个
public class CrewController : Controller
{
string d ="";
public CrewController()
{
d = "test";
}
}