Reflection C#

using System;
using System.IO;
using System.Reflection;
using System.Windows.Forms;
public class Utils
{
    /// 
    /// Gets the assembly title.
    /// 

    /// The asm.
    /// 
    private static string GetAssemblyTitle(Assembly asm)
    {
        object[] attributes = asm.GetCustomAttributes(typeof(AssemblyTitleAttribute), false);
        if (attributes.Length > 0)
        {
            AssemblyTitleAttribute titleAttribute = (AssemblyTitleAttribute)attributes[0];
            if (titleAttribute.Title != "")
            {
                return titleAttribute.Title;
            }
        }
        return "ReviewPal";
    }
    /// 
    /// Gets the assembly path.
    /// 

    /// The asm.
    /// 
    private static string GetAssemblyPath(Assembly asm)
    {
        return Path.GetDirectoryName(asm.CodeBase);
    }
}