Mega Code Archive

 
Categories / C# / XML
 

Load String from xml element

//Microsoft Public License (Ms-PL) //http://dbmlmanager.codeplex.com/license #region using using System; using System.Xml; #endregion namespace DbmlManager.Lib.Utility {   #region Class Docs   /// <summary>   /// Summary description for XmlUtil.   /// </summary>   #endregion   public class XmlUtil   {     #region LoadString(ref string val, XmlNode parent, string nodeName)     public static void LoadString(ref string val, XmlNode parent, string nodeName)     {       try       {         XmlElement elem = parent[nodeName];         if (elem != null)           val = elem.InnerText.Trim();       }       catch       {         val = string.Empty;       }     }     #endregion   } }