I am making a project in C# that\'s basically an image screen scraper for an image-search related game. I\'m trying to use HTMLAgilityPack to select all the image elements a
You might have a typo in the following line:
HtmlAttribute src = img.Attributes["@src"];
I got this to work for me (notice the @ position):
HtmlAttribute src = img.Attributes[@"src"];