Hi all, I'm supposed to take an app which can parse the info of an xml document and output it into readable info, however I have no idea where to begin...
This is what I have so far:
private void button1_Click(object sender, EventArgs e)
{
XmlTextReader read = new XmlTextReader(@"C:\Documents and Settings\John\Desktop\content.xml");
this.richTextBox1.Text = read.ToString();
}
Obviously it's not close to working. It just displays 'System.Xml.XmlTextReader' into the textbox. Any help would be appreciated.