通过 HttpWebResponse C# 从源代码中获取值

Get Value from source code by HttpWebResponse C#

我在 C# 中使用 HttpWebResponse 来响应我的请求 并在 StreamReader 中保存响应数据(字符串) 是工作 ! 但我需要消息框在 StreamReader 中获取一些文本 看看这个区域:

<tr><td class='left' style='width: 120px'>Country</td><td class='left'><img src='images/flags/us.png' alt='United States flag' title='United States flag'> United States (US)</td></tr>

这是 HTML 代码! 我想从中得到这个

United States (US)

--注意: 每次请求:'images/flags/us.png' 和 'United States flag' 更改为其他!

Also , Html Agility Pack is the best work ! , I'm uses Regex really is work!