1
yangpeixing
6 天以前 f07efc5e5f18517cd3d7d772dc8be55319c4804b
项目代码/WCS/WIDESEAWCS_Server/WIDESEAWCS_Core/Helper/AppSettings.cs
@@ -84,5 +84,21 @@
            return "";
        }
        public static string Get(params string[] sections)
        {
            try
            {
                if (sections.Any())
                {
                    return Configuration[string.Join(":", sections)];
                }
            }
            catch (Exception)
            {
            }
            return "";
        }
    }
}