Say I have something like this
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
is it possible use the YAXLib to Deserialize it into something like this
public class Note
{
public string to {get; set;}
public string from {get; set;}
public string Info {get; set;}
}
public class Info
{
public string header {get; set;}
public string body {get; set;}
}
Is there any setting that I can change the pathing to make it go into my C# classes that I setup?