2

I want to read the episode table of each season of a TV show. How can I get the data out of the wikipedia tables using C#? I want to keep my program slim and if possible don't want to use any further dll's or stuff.

Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
theknut
  • 2,533
  • 5
  • 26
  • 41

2 Answers2

3

Don't reinvent the wheel; Wikipedia has an API.

Daniel Mann
  • 57,011
  • 13
  • 100
  • 120
1

You must use WebRequest class to get whole page html and then use linq to extract the tag with class "wikitable"....

Ovais Khatri
  • 3,201
  • 16
  • 14