Exemplo n.º 1
0
        /// <summary>
        /// 解密配置文件
        /// </summary>
        public void Decryptconfig()
        {
            config config1 = new config();

            config1.Decryptconfig();
        }
Exemplo n.º 2
0
        /// <summary>
        /// 加密配置文件
        /// </summary>
        public void Encryptconfig()
        {
            config config1 = new config();

            config1.Encryptconfig();
        }
Exemplo n.º 3
0
        /// <summary>
        /// 加密配置文件
        /// </summary>
        public void Encryptconfig()
        {
            config config1 = new config();
            config1.Encryptconfig();
 
        }
Exemplo n.º 4
0
 /// <summary>
 /// 解密配置文件
 /// </summary>
 public void Decryptconfig()
 {
     config config1 = new config();
     config1.Decryptconfig();
 }
Exemplo n.º 5
0
        public string[] readconfig(string node)
        {
            config config1 = new config();
            string[] value = config1.readparameter(node);
            return value;

        }