Read tables (content) from Wikipedia using C# [closed]
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
开发者_JAVA技巧Closed 5 years ago.
Improve this questionI 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.
Don't reinvent the wheel; Wikipedia has an API.
You must use WebRequest class to get whole page html and then use linq to extract the tag with class "wikitable"....
精彩评论