예제 #1
0
 public static bool HasSetting(string key)
 {
     if (ini == null)
     {
         return(false);
     }
     try
     {
         return(ini.CheckKey("config", key));
     }
     catch (Exception)
     {
         return(false);
     }
 }