I need to parse multiple xml files with songs info in them. The structure is something like this:
<song_info>
<title>Title1</title>
<artist>Artist1</artist>
<lyrics>Sample lyrics</lyrics>
</song_info>
The user enters a phrase and I need to search for the phrase in the lyrics tag. If the phrase exists in the lyrics tag, I need to output a link to the song file. How is this done with LINQ? I am using .NET 3.5 . Thanks!