Exemplo n.º 1
0
 public static IEnumerable <MIDIEvent> ExtractEvents(this IEnumerable <Note> seq, FastList <MIDIEvent> buffer)
 {
     return(Mergers.MergeWithBuffer(NoteConversion.EncodeNotes(seq), buffer));
 }
Exemplo n.º 2
0
 public static IEnumerable <MIDIEvent> ExtractEvents(this IEnumerable <Note> seq)
 {
     return(NoteConversion.EncodeNotes(seq));
 }