How to convert Dictionary List to XElement
XElement represents an XML element. This post will describe about how to convert Dictionary to XML Format. Assume you want the XML to be in the following format, <paramlist><param><key>1</key><value>100</value></param><param><key>2</key><value>150</value></param></paramlist> The Dictionary is having <String, String>…