Hello, A have a string like this:
string s = @"
<tr>
<td>11</td><td>12</td>
</tr>
<tr>
<td>21</td><td>22</td>
</tr>
<tr>
<td>31</td><td>32</td>
</tr>";
How to create Dictionary<int, int> d = new Dictionary<int, int>();
from string s
to get same result as :
d.Add(11, 12);
d.Add(21, 22);
d.Add(31, 32);