After many hours of trying to get a list to serialize to XML, and completing this (although I'm sure I did it very shoddily). I need to now deserialize the XML back into a list. Here is my XML file for starters.
<?xml version="1.0" encoding="utf-8"?>
<ArrayOfPrograms xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Programs>
<File-name>chrome.exe</File-name>
<File-path>C:\Users\Shane\AppData\Local\Google\Chrome\Application\chrome.exe</File-path>
</Programs>
<Programs>
<File-name>lol.launcher.exe</File-name>
<File-path>C:\Riot Games\League of Legends\lol.launcher.exe</File-path>
</Programs>
</ArrayOfPrograms>
And heres my config class I'm using;
public class Config
{
[XmlElement("Recipient")]
public string recipient;
[XmlElement("Username")]
public string username;
[XmlElement("Password")]
public string password;
[XmlElement("Serial-ID")]
public string serialId;
[XmlElement("Email-settings")]
public Email Emails { get; set; }
[XmlArray("Program-List"), XmlArrayItem(typeof(Programs), ElementName = "Programs")]
public List<Programs> Programs { get; set; }
[XmlElement("Database-settings")]
public Database Databases { get; set; }
}
public class Programs
{
public string filename;
public string filepath;
[XmlElement("File-name")]
public string Filename { get; set; }
[XmlElement("File-path")]
public string Filepath { get; set; }
}
Can anyone give me any ideas as to which route I should be heading in? I've never dealt with deserializing into lists.