string imgurlhard = doc.DocumentNode.
Element("html").
Element("body").
Elements("div").Single(el => el.Attributes["id"].Value == "main").
Elements("div").Single(el => el.Attributes["id"].Value == "onlineIntegrator").
Elements("div").Single(el => el.Attributes["id"].Value == "results").
Element("img").Attributes["src"].Value;
MessageBox.Show(imgurlhard);
取得する Web ページの URL は次のとおりです。
http://integrals.wolfram.com/index.jsp?expr=sin(x)&random=false
誰かが私が間違っている原因を教えてもらえますNullReferenceException
か?