http://www.gamesas.com/index.php?/topic/1092028-unofficial-programming-thread/page__p__15933926__fromsearch__1entry15933926
http://www.gamesas.com/index.php?/topic/1092028-unofficial-programming-thread/page__p__15933926__fromsearch__1entry15933926
Most recent posts:
An example assignment XML file 3 2/7/2011 3/1/2011
Wow. You can't even read that.
Here is a small sample program to help get you going in the right direction.
using System;using System.Xml.Linq;namespace XMLReader{ class Program { static void Main() { XDocument Assignments = XDocument.Load("assignments.xml"); XElement root = Assignments.Root; if (root != null) { Console.WriteLine("Assignment Name: " + root.Attribute("name").Value); Console.WriteLine("Description: " + root.Element("Description").Value); Console.WriteLine("Importance: " + root.Element("Importance").Value); Console.WriteLine("Assign Date: " + root.Element("AssignDate").Value); Console.WriteLine("Due Date: " + root.Element("DueDate").Value); } Console.ReadLine(); } }}