Dev2.Runtime.Configuration.SettingsProvider.GetFilePath C# (CSharp) Méthode

GetFilePath() public static méthode

public static GetFilePath ( ) : string
Résultat string
        public static string GetFilePath()
        {
            var rootDir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);

            // ReSharper disable AssignNullToNotNullAttribute
            return Path.Combine(rootDir, "Settings", "Application.xml");
            // ReSharper restore AssignNullToNotNullAttribute
        }