Exemplo n.º 1
0
        public SimplifiedNote[] createNotes(NoteChord chord, WriterInfo info)
        {
            var arr   = new SimplifiedNote[chord.ModelCollection.Count()];
            int index = 0;

            foreach (Note note in chord.ModelCollection.Items())
            {
                arr[index] = new SimplifiedNote(note, info);
                index++;
            }

            return(arr);
        }
Exemplo n.º 2
0
 public void readInNote(SimplifiedNote s_note, Note note)
 {
     created_notes.Add(s_note.NoteId, note);
 }
Exemplo n.º 3
0
 public void readInSimplifiedNote(SimplifiedNote s_note, Note note)
 {
     s_note.NoteId = current_id;
     created_notes.Add(note, current_id);
     current_id++;
 }