private static Poziciq findPrazno(string[,] matrica) { Poziciq result = new Poziciq(-1,-1); for (int i = 0; i < 4; i++) { for (int j = 0; j < 4; j++) { if (matrica[i,j] == " ") { result = new Poziciq(i, j); } } } return result; }
private static Poziciq findPrazno(string[,] matrica) { Poziciq result = new Poziciq(-1, -1); for (int i = 0; i < 4; i++) { for (int j = 0; j < 4; j++) { if (matrica[i, j] == " ") { result = new Poziciq(i, j); } } } return(result); }