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.
Asked
Active
Viewed 1,561 times
2
-
Have you checked here: http://stackoverflow.com/questions/100358/looking-for-c-html-parser – Chris Trombley Jun 23 '11 at 16:03
-
Sounds quite nice, but you got to use a dll for it. I thought about something C# nativ if possible. But thanks! – theknut Jun 23 '11 at 16:07
-
What's wrong with importing another assembly to use in your project? – Yuck Jun 23 '11 at 16:28
2 Answers
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