Skip to content

Instantly share code, notes, and snippets.

@des1roer
Last active April 29, 2018 15:40
Show Gist options
  • Save des1roer/9a111ec07658c3106d46 to your computer and use it in GitHub Desktop.
Save des1roer/9a111ec07658c3106d46 to your computer and use it in GitHub Desktop.
public void XMLReader()
{
try
{
xml.Load("server_info.xml");
foreach (XmlNode n in xml.SelectNodes("/server_info"))
{
string Server = n.SelectSingleNode("server").InnerText;
string Port = n.SelectSingleNode("port").InnerText;
}
}
catch (Exception msg)
{
logger.Debug(msg);
return;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment