コード例 #1
0
ファイル: Note.cs プロジェクト: houlouk/WpfApplication1
 public Note(AStyle style, T frequency, dureeNote duration = dureeNote.NOIRE)
 {
     this.duration  = duration;
     this.Frequency = frequency;
     this.style     = style;
 }
コード例 #2
0
        public Silence(AStyle style, dureeNote duration = dureeNote.NOIRE)
        {
            this.Duration = duration;

            this.Style = style;
        }