using System.Collections.Generic;
public static void Main(string[] args)
HtmlWeb webGet = new HtmlWeb();
HtmlDocument document = webGet.Load("http://www.subspedia.tv/serie.php?id=315");
var rigaStagioneSerie = document.DocumentNode.SelectNodes("//td[@class='rigaStagioneSerie']");
List<string> pageTitles = new List<string>();
foreach (var title in rigaStagioneSerie)
if (title.ChildNodes.Count == 1)
pageTitles.Add(title.InnerText.Replace("\n", string.Empty).Replace("\t", string.Empty));
var titoloSerie = document.DocumentNode.SelectNodes("//span[@class='titoloSerie']");
foreach (var title in titoloSerie)
pageTitles.Add(title.InnerText);
foreach (var title in pageTitles)
Console.WriteLine(title);