예제 #1
0
파일: Tool.cs 프로젝트: radtek/IT_Monitor
        /// <summary>
        /// 解密配置文件
        /// </summary>
        public void Decryptconfig()
        {
            config config1 = new config();

            config1.Decryptconfig();
        }
예제 #2
0
파일: Tool.cs 프로젝트: radtek/IT_Monitor
        /// <summary>
        /// 加密配置文件
        /// </summary>
        public void Encryptconfig()
        {
            config config1 = new config();

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

        }