private MatchedWords MatchBuilder(string scrambledWord_, string word_) { MatchedWords matchedWord = new MatchedWords { SramcbledWord = scrambledWord_, Word = word_ }; return(matchedWord); }
private MatchedWords BuildMatchedWord(string scrambledWord, string word) { MatchedWords matchedWord = new MatchedWords { ScrambledWord = scrambledWord, Word = word }; return(matchedWord); }