CheckWordIsValid
private static bool CheckWordIsValid(string Word, List<string> AllowedWords)
{
bool ValidWord = false;
int Count = 0;
while (Count < AllowedWords.Count && !ValidWord)
{
if (AllowedWords[Count] == Word)
{
ValidWord = true;
}
Count++;
}
return ValidWord;
}