コード例 #1
0
 public JsonResult SomeAction(Reasonable obj)
 {
     return(Json(
                new
     {
         asdf = "lala"
     }
                ));
 }
コード例 #2
0
 public JsonResult SomeAction(Reasonable obj)
 {
     return Json(
         new
             {
                 asdf="lala"
             }
         );
 }
コード例 #3
0
        public ActionResult SomeAction()
        {
            var x = new Reasonable()
            {
                StringProp = "call me ",
                NumberProp = 123
            };

            return(View(x));
        }
コード例 #4
0
        public ActionResult SomeAction()
        {
            var x = new Reasonable()
            {
                StringProp = "call me ",
                NumberProp = 123

            };
            return View(x);
        }