<root>
<row>
<linksclicked>http://www.examiner.com/</linksclicked>
<clickedcount>34</clickedcount>
</row>
<row>
<linksclicked>http://www.sample123.com</linksclicked>
<clickedcount>16</clickedcount>
</row>
<row>
<linksclicked>http://www.testing123.com</linksclicked>
<clickedcount>14</clickedcount>
</row>
</root>
I have xml as above in the line and I have a class below
public class Row
{
public string linksclicked { get; set; }
public int clickedcount { get; set; }
}
How to convert xml string to Row Object list
source
share