System.Waf.Applications.ApplicationInfo.GetApplicationPath C# (CSharp) Method

GetApplicationPath() private static method

private static GetApplicationPath ( ) : string
return string
        private static string GetApplicationPath()
        {
            Assembly entryAssembly = Assembly.GetEntryAssembly();
            if (entryAssembly != null)
            {
                return Path.GetDirectoryName(entryAssembly.Location);
            }
            return "";
        }
    }