当我想到 aViewBag
时,我会将它与“最终决定权”联系起来。
这意味着您执行所有逻辑并将结果设置为它。
ViewBag.A = Some crazy math formula;
ViewBag.B = Another crazy math formula;
ViewBag.GrandTotal = Some crazy math formula + Another crazy math formula;
这也有效:
ViewBag.A = Some crazy math formula;
ViewBag.B = Another crazy math formula;
ViewBag.GrandTotal = ViewBag.A + ViewBag.B;
是的,我正在使用在运行时制定的变量!
这到底是荒谬的还是低效的?