How to add a List<Note> or a Scale to PatternBuilder? #215
seanjmiller
started this conversation in
General
Replies: 3 comments 2 replies
|
You can just add notes in a loop. foreach (var note in notesList)
{
patternBuilder.Note(note);
} |
0 replies
|
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. ` ` |
2 replies
|
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. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
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?
All reactions