System.Waf.Applications.ApplicationInfo.GetApplicationPath C# (CSharp) Метод

GetApplicationPath() приватный статический Метод

private static GetApplicationPath ( ) : string
Результат string
        private static string GetApplicationPath()
        {
            Assembly entryAssembly = Assembly.GetEntryAssembly();
            if (entryAssembly != null)
            {
                return Path.GetDirectoryName(entryAssembly.Location);
            }
            return "";
        }
    }