Programming Course in C# ¡Free!

11.14 - ArrayList of Points

 Saturday, April 06, 2013 published by Exercises C#

Create a struct "Point3D", to represent a point in 3-D space, with coordinates X, Y and Z.

Create a program with a menu, in which the user can choose to:
- Add data for one point
- Display all the entered points
- Exit the program

You MUST use ArrayList, instead of arrays.