struct Coordinate { public int x; public int y; public Coordinate(int x, int y) { this.x = x; this.y = y; } }
MyStruct[] foo = new MyStruct[1000];