示例#1
0
 public static IEnumerable <float> Times(this IBeatSequence sq)
 {
     return(sq.Beats.Select(beat => beat.Time).Distinct());
 }
示例#2
0
 public static IEnumerable <ISoundId> Instruments(this IBeatSequence sq)
 {
     return(sq.Beats.Select(beat => beat.Value.Sound).Distinct());
 }