Calling
List<PC> _PCList = new List<PC>();
...add Pc to PCList..
WriteXML<List<PC>>(_PCList, "ss.xml");
Function
public static void WriteXML<T>(T o, string filename)
{
string filePath= Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\Genweb2\\ADSnopper\\" + filename;
XmlDocument xmlDoc = new XmlDocument();
XPathNavigator nav = xmlDoc.CreateNavigator();
using (XmlWriter writer = nav.AppendChild())
{
XmlSerializer ser = new XmlSerializer(typeof(List<T>), new XmlRootAttribute("TheRootElementName"));
ser.Serialize(writer, o); // error
}
File.WriteAllText(filePath,xmlDoc.InnerXml);
}
inner exception
Unable to cast object of type ‘System.Collections.Generic.List
1[PC]' to type1[System.Collections.Generic.List`1[PC]]’.
'System.Collections.Generic.List
Please Help
The problem is with the line
Your
Tis alreadyList<PC>, and you’re trying to createtypeof(List<T>), which will translate totypeof(List<List<PC>>). Simply make ittypeof(T)instead.