Get int value from Xml
using System; using System.Xml; public class XmlUtil { #region LoadInt(ref int val, XmlNode parent, string nodeName) public static void LoadInt(ref int val, XmlNode parent, string nodeName) { try { XmlElement elem = parent[nodeName]; if (elem != null) val = Int32.Parse(elem.InnerText.Trim()); } catch { val = 0; } } #endregion }