Exemple #1
0
        public ActionResult Create(int total, string word, string sentence)
        {
            WordCounter wordCounter = new WordCounter(total, word, sentence);

            wordCounter.CountWordOccurrences();

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