Reflection C#

using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Reflection;
public static class Utility
{
    public static string ApplicationPath
    {
        get { return Path.GetDirectoryName(Assembly.GetExecutingAssembly().GetModules()[0].FullyQualifiedName); }
    }
}