List<string> to XML
// Example 1
List<string> items = new List<String>();
items.Add("sample1");
items.Add("sample2");
string str = "<no>" + String.Join("</no><no>", items) + "</no>";
// Example 2
List<string> countries = dc.SupplierCountries.Select(p=>p.CountryName).To...
karatas.dev1 min read