checkCorrectCell9x9() public méthode

public checkCorrectCell9x9 ( int x, int y ) : bool
x int
y int
Résultat bool
Exemple #1
0
 private void Box6_TextChanged(object sender, EventArgs e)
 {
     int[,] arr = mapTableToArray(); CCC = new CheckCorrectCell(arr);
     if (CCC.checkCorrectCell9x9(0, 5) &&
         Box6.Text != "")
     {
         Box6.BackColor = Color.Red;
     }
     else
         Box6.BackColor = Color.White;
     congratulations9x9();
 }