So i read about linq and all the cool functions and i made a simple class.
Could i seralize the List? Easily? and would it work as intented. if i did :P.Code://Inside of Region.cs (Holds the 500x500) List<MapData> myPoints = new List<MapData>(); /// /// class MapData { //Holds an XYZ [XmlAttribute("x")] public int x; [XmlAttribute("y")] public int y; [XmlAttribute("z")] public int z; public MapData() { } public MapData(int _x, int _y, int _z) { x = _x; y = _y; z = _z; } }