Click here to Skip to main content
15,891,529 members
Articles / Desktop Programming / WPF

Use LINQ to Create Music Playlists – Revisited

Rate me:
Please Sign up or sign in to vote.
5.00/5 (3 votes)
27 Apr 2009CPOL4 min read 23.8K   421   12  
A re-write of a previous article. Still using LINQ, but incorporating much more in this iteration 2 version.
using System;

namespace PlaylistCreatorFP
{
    public class PlaylistCreatorErrorEventArgs : EventArgs 
    {
        public string ErrorMessage { get; set; }
    }

    public class PlaylistCreatorMessageEventArgs : EventArgs
    {
        public string MessageText { get; set; }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
United States United States
Dave has been working in the software industry for a few years now. Having graduated with his BS in Computer Science & Engineering from the University of Toledo in 2002, Dave enjoys learning about new technologies and likes to apply new programming methods to solve age-old challenges. In his spare time he is addicted to movies (sci-fi, horror, anything good!) and spending time with family and friends. Dave also harbors a secret desire to make it big in the film/music industry—here’s lookin’ at you, kid! ;o)

Comments and Discussions