I’m looking for a simple C# solution to manage a playlist. Not the actual playback functionality, just adding, removing, reordering stuff and so on.
Does such code exist?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Assuming that your playlist has items like this in it:
Then a
List<PlaylistItem>should do:etc…
If you want, you can even subclass
List<T>to add your own information, like which song is currently playing: