Hi, I'm working on a simple music player as a way to learn the new C# 3.0 features. I'm building a DataTable of songs with columns like Path, Title, TimesPlayed, etc. When the program exits, it serializes the DataTable into an XML file. Then, when started again, it retrieves the DataTable from the XML file. I have a method "GetSongs(string target)" in my static "Library" class (which contains the actual DataTable) that uses a LINQ to return a DataView that representing a subset of the songs which
Read More...