CheckWordIsInTiles
private static bool CheckWordIsInTiles(string Word, string PlayerTiles) { bool InTiles = true; string CopyOfTiles = PlayerTiles; for (int Count = 0; Count < Word.Length; Count++) { if (CopyOfTiles.Contains(Word[Count])) { CopyOfTiles = CopyOfTiles.Remove(CopyOfTiles.IndexOf(Word[Count].ToString()), 1); } else { InTiles = false; } } return InTiles; }