public static string GetApp(string key)
    {
        System.Configuration.AppSettingsReader appr = new System.Configuration.AppSettingsReader();
        try
        {
            string str = (string)appr.GetValue(key, typeof(string));
            if (str == null || str == "") return null;
            return str;
        }
        catch { }
        return null;
    }
是什么意思