System.AppDomainExtensions.GetPrimaryAssemblyDirectory C# (CSharp) Метод

GetPrimaryAssemblyDirectory() приватный Метод

private GetPrimaryAssemblyDirectory ( this domain ) : string
domain this
Результат string
        public static string GetPrimaryAssemblyDirectory(this AppDomain domain)
        {
            return (String.IsNullOrWhiteSpace(domain.RelativeSearchPath) ? domain.BaseDirectory : domain.RelativeSearchPath);
        }
    }
AppDomainExtensions