public void Set(Cord xy, int value) { if (xy.OnBord(size)) { map[xy.x, xy.y] = value; } }
public int Get(Cord xy) { if (xy.OnBord(size)) { return(map[xy.x, xy.y]); } return(0); }