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