我正在尝试解析这个 XML 文档:
http ://services.tvrage.com/feeds/episode_list.php?sid=3332
我有这堂课:
public class Episode {
public int Season { get; set; }
public string Title { get; set; }
}
我的代码:
string path = "http://services.tvrage.com/feeds/episode_list.php?sid=" + id;
XmlDocument doc = new XmlDocument();
doc.Load(path);
现在我被困住了。如何从此文件创建剧集列表?我对赛季使用的属性感到困惑。
谢谢