public bool CompletedWord()
 {
     if (_completeList.Exists(x => vb.AscW(x) == 0) == true)
     {
         return(false);
     }
     return(true);
 }
Exemple #2
0
 public static SKColor GetColorOfLetter(this string thisLetter)
 {
     if (_vowelList.Count != 5)
     {
         throw new Exception("Must have 5 vowels");
     }
     if (_vowelList.Exists(x => x == thisLetter))
     {
         return(SKColors.Red);
     }
     return(SKColors.Black);
 }