MidiFile.GetTrackChunks() VS Chunks.OfType<TrackChunk>() #185
Answered
by
melanchall
Jenix-Park
asked this question in
Q&A
-
What is the difference between MidiFile.GetTrackChunks() and MidiFile.Chunks.OfType()? |
Beta Was this translation helpful? Give feedback.
Answered by
melanchall
May 25, 2022
Replies: 1 comment 3 replies
-
Those two things are absolutely the same, there is no any difference in performance. |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
Jenix-Park
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Those two things are absolutely the same, there is no any difference in performance.
MidiFile.GetTrackChunks()
is just a shortcut forMidiFile.Chunks.OfType<TrackChunk>()
.