Exemplo n.º 1
0
        public static string getCfgParameter(AppDataNames dataName)
        {
            string value = "";

            value = loadedCfg.Element(dataName.ToString()).Value;
            return(value);
        }
Exemplo n.º 2
0
 public static void setCfgParameter(AppDataNames dataName, string dataValue)
 {
     loadedCfg.Element(dataName.ToString()).SetValue(dataValue);
 }