XML C#

//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 description for XmlUtil.
  /// 

  #endregion
  public class XmlUtil
  {
    #region GetBoolAttrib(XmlNode node, string attrib, bool defVal)
    public static bool GetBoolAttrib(XmlNode node, string attrib, bool defVal)
    {
      XmlAttribute xmlAttrib = node.Attributes[attrib];
      if (xmlAttrib == null)
        return defVal;
      string val = xmlAttrib.Value;
      if (val == null || val == string.Empty)
        return defVal;
      bool returnVal = (val == "1" || val.ToLower() == "true");
      return returnVal;
    }
    #endregion
  }
}