Fritz.fx 0 Newbie Poster

Hi all.
I'm kind of hoping somebody could help me out with this little problem I've been trying to work out for the past few days.

What I'm trying to do is grab a list of "Titles" of some certain shows depending on what the "Season" is.

Something like this:
if Season no = 1 then foreach title Console.Writeline(title)

I've tried so many different ways of doing it without any success, it's starting to annoy me to the point of taking up smoking again, and I don't want to do that.

A full xml is here >> http://services.tvrage.com/feeds/full_show_info.php?sid=18174
But a small snippet is below just so you can get the gist of it.

<Show>
<name>Show name</name>
<totalseasons>4</totalseasons>
<showid>2730</showid>
<Episodelist>

<Season no="1">
<episode>
 <seasonnum>00</seasonnum>
  <title>part1</title>
</episode>
  <episode>
    <seasonnum>1</seasonnum>
    <title>part2</title>
  </episode>
</Season>

<Season no="2">
  <episode>
    <seasonnum>1</seasonnum>
    <title>part3</title>
  </episode>
  <episode>
    <seasonnum>2</seasonnum>
    <title>part4</title>
  </episode>
</Season>
</Episodelist>
</Show>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.