XML C#

using System;
using System.Xml;
namespace Microsoft.SnippetLibrary
{
    /// 
    /// Summary description for Util.
    /// 

    public class Utility
    {
        /// 
        /// Returns the InnerText value from a node 
        /// or string.Empty if the node is null.
        /// 

        /// 
        /// 
        public static string GetTextFromElement(XmlElement element)
        {
            if (element == null)
                return string.Empty;
            else
                return element.InnerText;
        }
    }
}