null 참조에 대해 런타임 바인딩을 수행할 수 없지만 null 참조는 아닙니다. 사용: MVC 4, ASP.NET 레이저 불가능할 것 같은 오류가 발생하고 있습니다.주(州)라는 널 참조를 사용하고 있다고 하지만 분명히 설정되어 있습니다. 컨트롤러: public ActionResult Index() { Dictionary states = new Dictionary() { { -1, "a"}, { 0, "b"}, { 1, "c"}, { 2, "d"}, }; //assigning states ViewBag.States = states; foreach (KeyValuePair de in ViewBag.States) { Debug.WriteLine(de.Key); } return View(); } 보기: @fo..