private bool checkWin() { int[] winArray = new int[9]{1,2,3,4,5,6,7,8,0}; if (intArray.Equals(winArray)) return true; return false; }