コード例 #1
0
        public void addChapter(int chapterNum, string timeStart, string timeEnd, string suid = null, string chapterInfo = null)
        {
            ChapterAtom chapter = new ChapterAtom();

            chapter.chapterNum  = chapterNum;
            chapter.timeStart   = timeStart;
            chapter.timeEnd     = timeEnd;
            chapter.suid        = suid;
            chapter.chapterInfo = chapterInfo;

            chapterAtom.Add(chapter);
        }
コード例 #2
0
ファイル: File.cs プロジェクト: koohiikappu/chapter-merger
        public void addChapter(int chapterNum, string timeStart, string timeEnd, string suid = null, string chapterInfo = null)
        {
            ChapterAtom chapter = new ChapterAtom();

              chapter.chapterNum = chapterNum;
              chapter.timeStart = timeStart;
              chapter.timeEnd = timeEnd;
              chapter.suid = suid;
              chapter.chapterInfo = chapterInfo;

              chapterAtom.Add(chapter);
        }