I have a html table.I want to convert this into a datatable. What is the best way of doing so? Thanks
...some years later...
var nodes = doc.DocumentNode.SelectNodes("//table/tr");
line has a typo and needs to be with double forward slash after 'table' and everything works like a charm
var nodes = doc.DocumentNode.SelectNodes("//table//tr");