Can't find Notes property and NotesCollection type. #183
-
This overview page contains an example code like below :
But both Notes property and NotesCollection class don't exist. Also, I have an old project with DryWetMidi in it. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi, Yes, these classes and properties are deprecated by the latest version of the library: https://melanchall.github.io/drywetmidi/obsolete/obsolete.html#obs11. So your examples should be transformed to: TimedObjectsManager<Note> notes = notesManager.Objects; or var notes = notesManager.Objects; The same for timed events. |
Beta Was this translation helpful? Give feedback.
Hi,
Yes, these classes and properties are deprecated by the latest version of the library: https://melanchall.github.io/drywetmidi/obsolete/obsolete.html#obs11.
So your examples should be transformed to:
or
The same for timed events.