/* * What do I want to do with the Plate? */ private void Example1() { var plate = new Plate(); foreach (var cell in plate) { // do something for all cells in the plate } plate[123].ToString(); // access position by integer plate[12, 34].ToString(); // access by cords plate["A12"].ToString(); // alphanumeric access plate["A", 12].ToString(); // coords like alphanumeric access plate.ToString(); // I want to get formatted ASCII table plate.ToImage(); // a picture; TODO: think about format, something simple, // preferably windows compatible vector format }