예제 #1
0
파일: Word.cs 프로젝트: tcmRyan/Budapest
 public string matchWords(string targetWord)
 {
     // Need to sort the array and lower the case
     string[] sortList = { characters, targetWord };
     Array.Sort(sortList);
     return(connection.MatchQuery(sortList[0], sortList[1]));
 }