class Program
{
public static string ReadMédicamentXmlPath = AppDomain.CurrentDomain.BaseDirectory + @"configure.xml";
static void Main(string[] args)
{
string BinaHao = " ";
try
{
System.Xml.XmlDocument doc = new System.Xml.XmlDocument();
doc.Load(ReadMédicamentXmlPath);
System.Xml.XmlNode inputNode = doc.SelectSingleNode("//STATION");
//XmlNodeList list = inputNode.SelectNodes("lName");
string[] data = inputNode.InnerText.Split('|');
System.Xml.XmlNodeList xnl0 = doc.ChildNodes;
string str = xnl0[0].InnerText;
BinaHao = str;
}
catch (Exception ex)
{
BinaHao = " " + ex.ToString();
}
}
}