
Converting Between List and String Types
These handy functions let you easily convert from a generic string List to a delimited string, or from a delimited string to a string List: /// /// Converts List to string with given separator./// /// The list./// The separator./// public static string ListToString( List list,string separator){ StringBuilder sb = new