How to add a List<Note> or a Scale to PatternBuilder? #215
Replies: 3 comments 2 replies
-
You can just add notes in a loop. foreach (var note in notesList)
{
patternBuilder.Note(note);
} |
Beta Was this translation helpful? Give feedback.
-
Ok thanks. What was throwing me off was that you can't use foreach in the Fluent callout and that a .Build() needs to be called on the added Pattern. `
` |
Beta Was this translation helpful? Give feedback.
-
Yes this works. It just took me with your help and poking through the documentation to do what I need to do with your libraries. The fluent approach just through me for a loop. Thanks for the help. I didn't see a way to mark your response as the answer or close this issue out. |
Beta Was this translation helpful? Give feedback.
-
Fantastic project!
I don't see how I can add a List to a PatternBuilder or even a Scale to the PatternBuilder.
The examples show notes known ahead of time, but what if I want to supply a List that may have 7, 12, ... notes?
Beta Was this translation helpful? Give feedback.
All reactions