I'm just starting to really get into xml these days. I have written a utility that will email out notifications of an event. I want to have an external list of 'subscribed' users that I can manipulate without having to re-compile everytime someone is added or deleted from the 'list'.

I figure xml is the easiest way to go. Here is what I have so far but I can't figure out how to read the nodes and create a semi-colon delimited string out of them.
VB Code:
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <configuration xmlns="http://tempuri.org/App.xsd">
  3.     <user>[email protected]</user>
  4.     <user>[email protected]</user>
  5.     <user>[email protected]</user>
  6.     <user>[email protected]</user>
  7. </configuration>

I've looked into the xmlTextReader class and some others but i'm thoroughly confused on the subject. What advice can someone give me here?