Ejemplo n.º 1
0
        public string ToCSV()
        {
            List <int> combineForSave = CellValue.ToList();

            combineForSave.Insert(0, MaxValue);
            combineForSave.Insert(1, GetSquareHeight());
            combineForSave.Insert(2, GetSquareWidth());

            return(string.Join(",", combineForSave));
        }