コード例 #1
0
 public ActionResult Show(AnaWord newWord)
 {
     return(View(newWord));
 }
コード例 #2
0
        public ActionResult CreateForm(string firstWord, string word2)
        {
            AnaWord newWord = new AnaWord(firstWord, word2);

            return(View("Show", newWord));
        }