using System.Collections.Generic;
public static void Main()
List<string> images = new List<string>();
WebClient client = new WebClient();
string site = "https://paparazziaccessories.com/shop/products/fishing-for-compliments-gold/";
var htmlText = client.DownloadString(site);
var htmlDoc = new HtmlDocument()
OptionFixNestedTags = true, OptionAutoCloseOnEnd = true
htmlDoc.LoadHtml(htmlText);
foreach (HtmlNode img in htmlDoc.DocumentNode.SelectNodes("//img"))
HtmlAttribute att = img.Attributes["src"];
Console.WriteLine(att.Value);