Пример #1
0
        private MatchedWords MatchBuilder(string scrambledWord_, string word_)
        {
            MatchedWords matchedWord = new MatchedWords {
                SramcbledWord = scrambledWord_, Word = word_
            };

            return(matchedWord);
        }
Пример #2
0
        private MatchedWords BuildMatchedWord(string scrambledWord, string word)
        {
            MatchedWords matchedWord = new MatchedWords
            {
                ScrambledWord = scrambledWord, Word = word
            };

            return(matchedWord);
        }