File Stream C#

// //------------------------------------------------------------------------------
// // 
// //  Copyright Â© Dascoba Development 2010
// // 
// //------------------------------------------------------------------------------
namespace Dascoba.Umb.FileManager.Support
{
    using System;
    using System.IO;
    using System.Linq;
    public static class Util
    {
        /// 
        ///   Gets the extension without the dot
        /// 

        /// Name of the file.
        /// 
        internal static string GetSimpleExtension(string fileName)
        {
            return Path.GetExtension(fileName).Replace(".", "");
        }
    }
}