MetroIde.Helpers.VariousFunctions.GetApplicationLocation C# (CSharp) Method

GetApplicationLocation() public static method

Gets the parent directory of the application's exe
public static GetApplicationLocation ( ) : string
return string
        public static string GetApplicationLocation()
        {
            return Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location) + "\\";
        }