1
huangxiaoqiang
2025-11-25 4485cf13b64f8a2bde6609b7d9ecc1cd4f33868b
项目代码/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 "";
        }
    }
}