00001 using System; 00002 using System.Collections.Generic; 00003 using System.Text; 00004 using System.Xml; 00005 00006 namespace TES4ModTranslator 00007 { 00008 public class AccesXmlFile 00009 { 00010 00011 public static string culture; 00012 public static string aString; 00013 00014 public void AccesXmlFile() 00015 { 00016 } 00017 00018 public void ReadXMLFile() 00019 { 00020 XmlDocument xmlDoc = new XmlDocument(); 00021 xmlDoc.Load("lang.xml"); 00022 00023 foreach (XmlNode myXmlNode is xmlDoc.GetElementsByTagName("*")) 00024 { 00025 } 00026 } 00027 00028 } 00029 }