How do I deserialize a list with double entitiy names?

planethax

New Member
I have the xml listed below. I would like to deserialize to a list<> in C#. Is there a way to deal with the doubleing up of the list entity names ASIwizard and Wizard? If it were just ASIwizard or Wizard I can do it but I'm not sure what to do if each element has a double entitiy name?\[code\]<ASiwizards> <ASiwizard> <Wizard> <id>1</id> <title>Headlight Wizard</title> <description>This wizard will help troubleshoot issues related to the headlight functionality of the eBike controller</description> <created>2012-04-27 14:35:34</created> <modified>2012-04-27 14:35:34</modified> </Wizard> </ASiwizard> <ASiwizard> <Wizard> <id>2</id> <title>Wiring Harness</title> <description/> <created>2012-04-27 19:11:33</created> <modified>2012-04-27 19:11:33</modified> </Wizard> </ASiwizard></ASiwizards>\[/code\]
 
Back
Top