コード例 #1
0
ファイル: GameSerialize.cs プロジェクト: ncpleslie/SudokuWPF
        public string ToCSV()
        {
            List <int> combineForSave = CellValue.ToList();

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

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