Example #1
0
 static void Main(string[] args)
 {
     SystemTopoXmlReader xmlReader = new SystemTopoXmlReader();
     xmlReader.LoadEmbeddedXml();
     xmlReader.CreateObjects();
     Console.WriteLine("Hit any key to continue");
     Console.ReadKey();
 }
Example #2
0
 public static void Load()
 {
     SystemTopoXmlReader xmlReader = new SystemTopoXmlReader();
     xmlReader.LoadEmbeddedXml();
     xmlReader.CreateObjects();
     // TODO: Temporary load from hard-coded arrays
     LoadFromArrays();
 }