Here is a handy snippet I normally use to create a CSV string from a simple collection of strings: 1: public string ToCsv(IEnumerable<string> collection){ 2: return string.Join(“,”, collection.ToArray()); 3: }
All posts in category C#
Create CSV From a Simple Collection.
Posted by micaleel on March 17, 2010
http://khalilmuhammad.com/2010/03/17/create-csv-from-a-simple-collection/
Windows XP Style XPlorerBar for WPF on CodeProject
I’ve used the XP Style explorer bar several times in my Windows Forms projects. Here is pretty impressive CodeProject article written by Olivier Simon with an implementation of a fully customizable XPlorerBar for WPF.
Posted by micaleel on December 6, 2008
http://khalilmuhammad.com/2008/12/06/windows-xp-style-xplorerbar-for-wpf-on-codeproject/