Ejemplo n.º 1
0
        public void LoadInstructorNote()
        {
            var instructorNoteFile = Directory.GetFile("InstructorNotes.md");

            if (instructorNoteFile.Exists)
            {
                InstructorNote = InstructorNote.Load(instructorNoteFile, this);
            }
        }
Ejemplo n.º 2
0
        public void LoadInstructorNote(CourseLoadingContext context, int slideIndex)
        {
            var instructorNoteFile = Directory.GetFile("InstructorNotes.md");

            if (instructorNoteFile.Exists)
            {
                InstructorNote = InstructorNote.Load(context, instructorNoteFile, this, slideIndex);
            }
        }