コード例 #1
0
        public ActionResult WordsInSentenceRev(WordsInSentenceRev model)
        {
            model.wordRev = revW(model.userInput);

            return View(model);
        }
コード例 #2
0
        // GET: WordsInSentenceRev
        public ActionResult WordsInSentenceRev()
        {
            WordsInSentenceRev wisr = new WordsInSentenceRev();

            return View(wisr);
        }