Hola Estoy tratando de serializarC# No es capaz de serializar la clase con la lista <CustomObject> como propiedad
FileStream fileStream = new FileStream("batches.xml", FileMode.Open);
XmlSerializer serializer = new XmlSerializer(typeof(List<Batche>));
List<Batche> listOfBatches = new List<Batche>();
[Serializable]
[XmlRoot("Batch")]
public class Batche
{
[XmlElement("Title")]
public string Title
{
get;set;
}
[XmlArray("ListOfLinks"),XmlArrayItem("Link",Type = typeof(Link))]
public List<Link> Links
{
get;set;
}
}
[Serializable]
[XmlRoot("Link")]
public class Link
{
[XmlElement("Uri")]
public Uri Uri
{
get;
set;
}
[XmlElement("Status")]
public string Status
{
get;
set;
}
}
Conseguir siguiente error: Hubo un error que refleja el tipo 'System.Collections.Generic.List` 1 [DownloadTRON.Entities.Batche] '.
estado probando esto desde las últimas 4 horas, puede cualquier cuerpo señalar lo que estoy haciendo mal!
Saludos Pravin
Esto podría ayudar a http: // stackoverflow. com/questions/1212742/xml-serialize-generic-list-of-serializable-objects – btlog