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...
Apr 13, 20231 min read23

