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); }
public void readInNote(SimplifiedNote s_note, Note note) { created_notes.Add(s_note.NoteId, note); }
public void readInSimplifiedNote(SimplifiedNote s_note, Note note) { s_note.NoteId = current_id; created_notes.Add(note, current_id); current_id++; }