我真的不明白这里的问题是什么以及为什么我会收到这个错误
public ActionResult Index()
{
var V_Model = new V_ViewModel() { TagName=V_Model.TagName};
return View(V_Model);
}
public class V_ViewModel
{
public string TagName { get; set; }
}
错误:
是“类型”,但用作“变量”
这不是在 MVC 中使用 View Model 的方式吗?