publicstring getContent(string webAddress){HtmlAgilityPack.HtmlWeb web =newHtmlAgilityPack.HtmlWeb();HtmlDocument doc = web.Load(webAddress);returnstring.Join(" ", doc.DocumentNode.Descendants().Select(x => x.InnerText));}
am using this function to extract content between html tags however visual studio is showing exception on the line of return! Problem might be in decendant() function! says not found in context! help plz!