赋值的左侧必须是变量属性或索引器MVC

时间:2016-01-15 00:48:25

标签: model-view-controller

我尝试计算2列表的差异并保存在另一列表中。但是所有的时间我都有错误“作业的左侧必须是变量属性或索引器”。有人可以告诉我,我做错了什么?

这是我的代码

 public ActionResult Index(Timesheet timeLogger)
    {
        System.DateTime momentStart = new System.DateTime();
        System.DateTime momentEnd = new System.DateTime();
        Nullable < System.DateTime > b;
        int a=0;
        timeLogger.EndWork =  momentEnd;
        timeLogger.StartWork = momentStart;
        timeLogger.TotalTime=a;

        int houerEnd = momentEnd.Hour;
        int houerStart = momentStart.Hour;

        houerEnd - houerStart = a;

        return View();
    }

模型类

在这里输入代码

0 个答案:

没有答案