I am very new to HTML Agility Pack. I am trying to find some documentation but having some issues.
I have the following code:
<div class="person">
<a href="blah1.html">Person 1</a>
</div>
<div class="person">
<a href="blah2.html">Person 2</a>
</div>
<div class="person">
<a href="blah3.html">Person 3</a>
</div>
<div class="person">
<a href="blah4.html">Person 4</a>
</div>
Using the parser, how can I only grab links within a div that has a class person?
Thank you!