✅ how do i create a constant process to check for the win condition in tictactoe?
i have created a visual tictactoe game and am struggling on triggering the win condtion, it seems to ignore my if statement looking for win conditions



global.enum Mark {
Circle,
Cross,
Empty
}private Mark[,] _board = new Mark[,] {
{ Mark.Empty, Mark.Empty, Mark.Empty },
{ Mark.Empty, Mark.Empty, Mark.Empty },
{ Mark.Empty, Mark.Empty, Mark.Empty }
}void button1_Click()
{
_board[0,0] = Mark.Circle;
}